If you ever need to stop all the sounds playing in flash using ActionScript3, you can do so using the following method.
First include the SoundMixer class:
import flash.media.SoundMixer;
Then to stop the sounds call the stopAll method:
SoundMixer.stopAll();