On 08/29/2015 03:53 AM, Kay C Lan wrote:
repeat with x = 1 to 10
add 1 to x
end repeat
beep
It's really not a good idea to try to mess with the loop index while
it's running. Do this instead:
put 1 into y
repeat with x = 1 to 10
add 1 to y
end repeat
beep
and set the break condition on the 'add 1 to y' line
--
Mark Wieder
[email protected]
_______________________________________________
use-livecode mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode