Hi there.
Is there anyway to add a pause during the running of the actionscript? say a one second delay for example.
Just that Id like to show how the actionscript works piece by piece instead of running all at once.
Cheers
LK
Printable View
Hi there.
Is there anyway to add a pause during the running of the actionscript? say a one second delay for example.
Just that Id like to show how the actionscript works piece by piece instead of running all at once.
Cheers
LK
setInterval is the method to use for pausing
(except - for(iterations) loops, they always complete, cannot be paused)
prolly best to use - trace(this); trace(that); trace(everything);
this way your output window will show the logic
ah i see. Needed to use it for a loop you see. Seems to complete the loop so I was hoping to add a pause between each event.Quote:
Originally Posted by a_modified_dog
Cheers anyway