I have 10 movie symbols on the stage at the same time. In each symbol I have the following code:
Code Actionscript:stop(); pause = function () { play(); clearInterval(pausei); } pausei = setInterval(pause, 5000);
All it does is repeat an animation in each symbol.
I used the above method because I figured it would keep the .SWF file size small, since i wouldn't be adding unneeded frames so the animations wouldn't repeat so quickly.
However I'm not sure how CPU intensive the above code would be since it's running 10 times. Sure saving filesize is great, but not if i crash a users computer lol.
Can anyone please advise me?
- What im trying to do is repeat the animations in the movie symbols but after a specific amount of time. So basically... Play the movie, Pause a few seconds, Then play the animation again, Then Repeat.





Bookmarks