Re: Training the AI to write better LiveCode

2023-01-13 Thread Kevin Miller via use-livecode
Its far more than a search engine. It can edit copy, write articles and analyse multiple inputs for similarities and differences and a lot more. Like all such new technologies this is going to be here to stay. So its not a case of trying not to train it in order to preserve programmer jobs. Ther

Re: Training the AI to write better LiveCode

2023-01-13 Thread Mike Kerner via use-livecode
"AI" has always been a misleading term, for like 40 years. gawd, i'm old. There is pattern matching, tree traversals, bayesian probability, etc. it's definitely not anything like a wiki. it might just be helpful at slogging out a lot of the code that we have to write or include by hand, especially

Re: Training the AI to write better LiveCode

2023-01-13 Thread Mark Wieder via use-livecode
On 1/13/23 07:30, Mike Kerner via use-livecode wrote: "AI" has always been a misleading term, for like 40 years. gawd, i'm old. There is pattern matching, tree traversals, bayesian probability, etc. it's definitely not anything like a wiki. it might just be helpful at slogging out a lot of the co

Standalone riddle

2023-01-13 Thread J. Landman Gay via use-livecode
I have a 2-card stack, very simple. The first card has a plain text list field and an editable search field. The user types in a string and the resulting match is displayed on card 2 with definitions. The stack requires no inclusions and scripts are extremely basic. I use a native Android field

Re: Standalone riddle

2023-01-13 Thread J. Landman Gay via use-livecode
I take back the "no inclusions" part, I do include the browser widget on card 2. I see now I also include the native Android field widget but it isn't placed anywhere and isn't used. The native field I do use is created with mobileControlCreate. On 1/13/23 3:42 PM, J. Landman Gay via use-liveco

RE: Standalone riddle

2023-01-13 Thread Ralph DiMola via use-livecode
I would try to install the "Test version" on another Android device and see if it runs OK. Then it would narrow it to the building process. The "test" apk will be in some temp folder. I will look for it you can't find it. Ralph DiMola IT Director Evergreen Information Services -Original Messa

RE: Standalone riddle

2023-01-13 Thread J. Landman Gay via use-livecode
Did that. The test version runs okay when moved to another device. It's something in the build process or else it's something I can't identify yet. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On January 13, 2023 5:02:13 PM Ralph DiMola

Re: Standalone riddle

2023-01-13 Thread Paul Dupuis via use-livecode
Fully qualified object references are your friend. Have you tried referring to the field as: put pText into field "searchTerm" of cd 1 of stack "stackName" -- of instead of the card number, use name or ID On 1/13/2023 4:42 PM, J. Landman Gay via use-livecode wrote: I have a 2-card stack, very

Re: Standalone riddle

2023-01-13 Thread J. Landman Gay via use-livecode
That's how I fixed the first two errors, though each fix moves the error somewhere else. This stack ran fine the last time I compiled it, maybe 2 years ago. And when the error occurs, the card has not changed and by default, without a full object reference, the current card should be the refere

Re: Standalone riddle

2023-01-13 Thread Mark Wieder via use-livecode
On 1/13/23 17:53, J. Landman Gay via use-livecode wrote: without a full object reference, the current card should be the reference. Heh. I think *should be* is the key phrase there. Looking farther down the list in the error dialog, it references line numbers in the 400-600 range. My scripts

Re: Training the AI to write better LiveCode

2023-01-13 Thread Jim Lambert via use-livecode
> Kevin wrote: > What is important is ensuring that LiveCode, which is supported already, is > not left behind and that you can generate LiveCode code at the same standard > as other languages. Exactly! > Rick wrote: > Just because something may be technologically > possible, doesn't mean we

Re: Training the AI to write better LiveCode

2023-01-13 Thread Geoff Canyon via use-livecode
So just now I put this in to chatgpt: "fizz bin" is a program that counts from 1 to 100, replacing every number divisible by 5 with "fizz" and every number divisible by 7 with "bin"; and numbers divisible by both 5 and 7 with "fizz bin". Write code in the programming language livecode to execute "

Re: Standalone riddle

2023-01-13 Thread Geoff Canyon via use-livecode
This doesn't solve the puzzle, but: use a stack property to store the value instead? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev