Re: Extracting list of errors from LiveCode 8

2016-08-05 Thread Mike Kerner
looks like a candidate for the dictionary and the release notes for 8... On Thu, Aug 4, 2016 at 9:25 PM, Lyn Teyla wrote: > Ali Lloyd wrote: > > > You can use the global property > > > > the scriptExecutionErrors > > > > To obtain this list. Note that this does not work in

Re: Extracting list of errors from LiveCode 8

2016-08-04 Thread Lyn Teyla
Ali Lloyd wrote: > You can use the global property > > the scriptExecutionErrors > > To obtain this list. Note that this does not work in a standalone so if you > need it you'll have to set a custom property on an included stack or > something like that. Thanks Ali! It looks like the

Re: Extracting list of errors from LiveCode 8

2016-08-04 Thread Sannyasin Brahmanathaswami
FYI, not all errors from all included plug-ins will show with the scriptExecutionErrors. e.g. libURL errors can silently lock up the entire IDE and you will only know if explicitly check for the result at the right place in your script. On 8/3/16, 11:59 PM, "use-livecode on behalf of Ali

Re: Extracting list of errors from LiveCode 8

2016-08-04 Thread Ali Lloyd
You can use the global property the scriptExecutionErrors To obtain this list. Note that this does not work in a standalone so if you need it you'll have to set a custom property on an included stack or something like that. On Thu, 4 Aug 2016 at 10:29, Lyn Teyla wrote: >

Re: Extracting list of errors from LiveCode 8

2016-08-04 Thread Lyn Teyla
Thierry Douez wrote: > within LC 8.0, this works: > > *put* the cErrorsList of stack "revErrorDisplay" Thanks Thierry! However, this doesn’t seem to work with 8.0.2 RC 4 and 8.1.0 DP 3. Lyn ___ use-livecode mailing list

Re: Extracting list of errors from LiveCode 8

2016-08-04 Thread Thierry Douez
Hi Lyn, within LC 8.0, this works: *put* the cErrorsList of stack "revErrorDisplay" ​Regards, Thierry ​ > In LiveCode 7 and earlier, one could use the following to extract the list > of errors: > > the cErrorsList of cd 1 of stack "revErrorDisplay" > > However, this no longer works in

Extracting list of errors from LiveCode 8

2016-08-04 Thread Lyn Teyla
Hi all, In LiveCode 7 and earlier, one could use the following to extract the list of errors: the cErrorsList of cd 1 of stack "revErrorDisplay" However, this no longer works in LiveCode 8. What is the new method of extracting the list of errors? TIA, Lyn