Question
Stop and Play Sound from one button
This is my code where it can only stop. I want to make it play the song back can anyone help ?
silence.addEventListener(MouseEvent.CLICK,onStop);
function onStop(e:MouseEvent):void{
SoundMixer.stopAll();
silence.visible=false;
}
