Hi all, Can someone tell me how I create a pause / play buttons to a flash file? I'm not talking a video pause / play, but one that will stop everything, and then resume everything. I have a tutorial with a video file in it, external voiceovers, and some other stuff. I need everything to pause, and not just the video clip. The voice overs just keep on going until they are done with the standard video media controls. Any ideas? Seems like this should be pretty basic, but I've found nothing. Thanks Brian
You'll have to tell which movieclips, you want to pause and unpause. Pause: _root.yourMovieClip.stop(); Unpause: _root.yourMovieClip.play();