I’ve got a movie that’s all on the root timeline and a pause button that basically just stops(); the movie but it’s a bit buggy if you click it on the frames that are running some actionscript. I was wonder if someone knows of a less crude way to pause a flash movie?
I think the trouble is happening when I click pause on frames that are running a setInterval command (timer = setInterval(pause, 2000);). So should i just add a delete.timer; command or something prior to the stop(); in the pause button?