|
-
pause in running of actionscript
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
-
FK'n_dog
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
-
 Originally Posted by a_modified_dog
setInterval is the method to use for pausing
(except - for(iterations) loops, they always complete, cannot be paused)
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.
Cheers anyway
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|