Can I start a program with (when green flag clicked) and then
(broadcast "start")
(When I receive "start")
.....
.....
And when a Routine ends
(broadcast "start")
Not elegant but I can't think of a way to do it across many sprites.
Thanks
Terry
Offline
You can restart the game during the game by using that broadcast, but I don't know of any other ways besides variables (and that's not the best way).
Offline
Make everything have a foundation. Instead of the green flag being started, you will perhaps do this to one sprite only.
WHEN GREEN FLAG CLICKED
broadcast START
And then have every other thing start when they receive 'Start'.
Offline