Código ActionScript :
import flash.media.SoundMixer;
//play
boton2.addEventListener(MouseEvent.CLICK, ds);
function ds(MouseEvent):void
{
play();
SoundMixer.play();
}
//pause
boton3.addEventListener(MouseEvent.CLICK, mt);
function mt(MouseEvent):void
{
stop();
SoundMixer.stopAll();
}espero me puedan ayudar =)
