Page 1 of 1

Error List

Posted: Sun May 07, 2017 6:26 pm
by pderks
Hi,

shouldn't there be a Livecode wide error list ?

Code: Select all

put length(the cErrorsList of cd 1 of stack "revErrorDisplay")
returns 0.

My examination of the stack "revErrorDisplay" in package "LiveCode Community 8.1.3" for Mac found no data.

Peter

Re: Error List

Posted: Tue May 09, 2017 6:35 am
by jacque
The errors list was moved to a global property, the scriptExecutionErrors. The dictionary hasn't been updated yet, but you can retrieve it like this:

put the scriptExecutionErrors into tErrorList

Re: Error List

Posted: Fri May 12, 2017 4:12 am
by pderks
Jacque,

thank you very much.

Peter