I'm having same issue exactly explained in this forum post How to stop all child movieclips inside a movieclip in AS3?
Except my requirement is When user click the pause button current frame holding movie clip child element should gotoAndStop and 25 frame.
Also I'm using a timer function so when user click pause button timer should be stopped. This actually working when I add the following code myTimer.stop();
however if I clicked the play button I put this one myTimer.start();
. The issue is from myTimer.start();
function it's actually starting the timer all over again but I need to resume the timer.
Could any help me out of these issues. ASAP
pause
/resume
ability so you need to keep a variable when you stop the timer and start it again. – putvande