Re: bug in Standalone Only

2022-03-07 Thread Bob Sneidar via use-livecode
Hi all. I found it. I have a handler that creates a temp database in the default folder. In a Mac standalone that folder is read only. Thankfully it is only something I use in the IDE and not in standalones, so I now test for the environment. Sent from my iPhone > On Mar 7, 2022, at 17:48, J.

Re: bug in Standalone Only

2022-03-07 Thread J. Landman Gay via use-livecode
Remote debugging allows you to step through the script. But we do have an error lookup utility that will tell you what the error codes mean. -- Jacqueline Landman Gay | jac...@hyperactivesw

Re: bug in Standalone Only

2022-03-07 Thread Tom Glod via use-livecode
Hi Bob, sometimes it helps to look up the error using the scriptexecutionerrors function The first number that you see in each line is the error number. So "put line x of the scriptExecutionErrors" should tell you exactly what the error is, and that is often a good hint of where to look. Hope th