0
votes

I have a 10 frames on main timeline with a movieclip on each frame. Every movieclip contains some animation and sound (placed on separate layer).

I need to create 2 buttons to control the animation: a Pause and Resume.

Here is what i have tried:

on(release) {
    _root.mc.play();    
}

on(release) {
    _root.mc.stop();    
}

This seems to work on animations, but it does not pause the voiceover(the sound). What is the best way to go about it. I need this for ActionScript 2.

1

1 Answers

0
votes

You should set the sounds type as Stream.

enter image description here