Sound Files

I have a sound piece in my flash movie which i wanna be able to pause. Is this possible. If so can anyone give me a hand. I dont want the sound to stop, and then start from the beginning, that i can do, but i want it to PAUSE and continue from the same spot on resuming

The power of play() and stop() :wink:

If you want to stop it when it hits the frame and continue it with a button do this…

on the frame you want it to stop use this…

stop();

On the button you want to use to start playing again use this…

on (release) { play(); }