Re: Livecode Future

2024-07-23 Thread Heriberto Torrado via use-livecode
Hi Tom, It appears that under this licensing model, developers creating applications for internal company use—such as for a workforce of 100 employees—would still need to pay $15,520 even with the 30% discount applied. I hope I've misunderstood, but upon receiving the email about Livecode Cre

Re: Websockets RFC 6455

2024-07-23 Thread Tom Glod via use-livecode
Hey Mike, I describe how I did it on the GitHub page. I find all llms work better when they have a starting point if you ask them just to start from nothing the performance will be significantly worse. Examples of correct responses are key so in this case I provided the source code for the httpd

Livecode Future

2024-07-23 Thread Tom Glod via use-livecode
Hello All, I'll start. After reviewing Livecode's new direction and offer. I feel very positive about this change. Maybe in the future I will feel differently, but currently, as a solo dev, even 2 or 3 devs, as I expand, it all is kind of in the range of reasonable. The <= 5% tax hurts a bit, but

Re: crop image

2024-07-23 Thread jbv via use-livecode
Please check mu second post on the same topic. For the first one, I pressed "send" by mistake before finishing to write it. Thanks. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage y

Re: crop image

2024-07-23 Thread Craig Newman via use-livecode
Peter is correct in that you could: "put the imageData of last image into wherever” as opposed to finding the number of that image directly and using that info to do stuff. Be aware that the “last” keyword, though invaluable, is not stable when referring to groups. Craig > On Jul 23, 2024, a

Re: crop image

2024-07-23 Thread Peter Bogdanoff via use-livecode
You use the “last” keyword, ie the highest numbered one: the last image Peter Bogdanoff > On Jul 23, 2024, at 9:33 AM, Craig Newman via use-livecode > wrote: > > Hi. > > You need, at a minimum to avoid an error, at least this; > > put number of imgs into ni > > add 1 to Nflds > >

Re: Websockets RFC 6455

2024-07-23 Thread Mike Kerner via use-livecode
i'd like to learn more about how you did this. i have had terrible luck getting any of the LLM's to generate reasonable LC code (including multiple attempts on this very topic). ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: crop image

2024-07-23 Thread Craig Newman via use-livecode
Hi. You need, at a minimum to avoid an error, at least this; put number of imgs into ni add 1 to Nflds put id of img ni into tid put imageData of img ni but only the very last line actually does anything, placing the imageData of ing ni into the message box. What is the other stuff for, a

crop image

2024-07-23 Thread jbv via use-livecode
Hi list, I have the following script : create image put number of imgs into ni put id of img ni into tid set filename of img id tid to myFile put imageData of img id tid into pimage -- many lines for imagedata analysis crop image id tid to rect trect I get this error : crop: object is no

crop image

2024-07-23 Thread jbv via use-livecode
Hi list, I have the following script : create image put number of imgs into ni add 1 to Nflds put id of img ni into tid put imageData of img ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscrib