Page 1 of 1

Make a stack usable while repeating

Posted: Wed Sep 30, 2009 3:17 pm
by Paul D
Whenever I use a repeat, when its executing, the stack is unusable. How can I make it usable while the script is still executing? I thought I remembered reading to use

Code: Select all

with messages
with the repeat but that doesn't seem to work so maybe I made that up.

Posted: Wed Sep 30, 2009 3:40 pm
by bn
Paul,

put

Code: Select all

wait 0 milliseconds
inside the repeat loop
that should do it,
you could also do

Code: Select all

wait 0 milliseconds with messages
regards
Bernd

Posted: Thu Oct 01, 2009 1:31 pm
by Paul D
works, thank you sir.