GREAT! Thanks again!
Best regards
Jörg
recursion limit
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: recursion limit
Hi , I am having the exact same message when I open a stack and it does not stop, what should I do ? Here is the message : revStackNameIsIDEStack has reached the recursion limit of : 400000. Execution will be terminated to prevent hang
Re: recursion limit
mwieder wrote: Wed Jun 06, 2012 5:50 pm Would something like this do the trick?
Code: Select all
local sRecursionLoop --(sic) on mouseUp put 10000 into sRecursionLoop doSimulation end mouseUp on doSimulation subtract 1 from sRecursionLoop if sRecursionLoop > 0 send "doSimulation" to me else answer "fertig" end if end doSimulation
Hi , I am having the exact same message when I open a stack and it does not stop, what should I do ? Here is the message : revStackNameIsIDEStack has reached the recursion limit of : 400000. Execution will be terminated to prevent hang
Re: recursion limit
Klaus wrote: Wed Jun 06, 2012 4:05 pm Hi Joerg,
"recursionlimit" is NOT the number of runs of a handler but the size in bytes of the calls!
You can SET this to a higher value and see if that helps.
Check the dictionary for more info.
Best
Klaus
Hi , I am having the exact same message when I open a stack and it does not stop, what should I do ? Here is the message : revStackNameIsIDEStack has reached the recursion limit of : 400000. Execution will be terminated to prevent hang
