Search found 4 matches

by BillOne
Mon Feb 04, 2019 4:06 pm
Forum: Android Deployment
Topic: Crashes on an android device and slowliness
Replies: 1
Views: 3017

Crashes on an android device and slowliness

Hello,

- I am having some crashes when I start my android livecode App, How can
I fix this?
- Plus when I first start the app, whenever I click on a button
it is not reacting fast enough, please help me solve this.
by BillOne
Sun Jan 27, 2019 5:23 am
Forum: Talking LiveCode
Topic: recursion limit
Replies: 18
Views: 22314

Re: recursion limit


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 ...
by BillOne
Sun Jan 27, 2019 2:36 am
Forum: Talking LiveCode
Topic: recursion limit
Replies: 18
Views: 22314

Re: recursion limit


Would something like this do the trick?


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 ...
by BillOne
Sun Jan 27, 2019 2:35 am
Forum: Talking LiveCode
Topic: recursion limit
Replies: 18
Views: 22314

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