Bueno, como dije anteriormente de AS2 sé muy poco, pero si necesitas el código de AS3 sería el siguiente para botones on /pause
Código AS3:
Ver originalvar loadSnd:URLRequest = new URLRequest("NO.mp3");
var thisSnd:Sound = new Sound();
var sndTrans:SoundChannel = new SoundChannel();
var song_position:Number;
var song_paused:Boolean;
thisSnd.load(loadSnd);
play_btn.addEventListener(MouseEvent.CLICK, playF);
stop_btn.addEventListener(MouseEvent.CLICK, pauseF);
function playF(event:MouseEvent):void{
sndTrans = thisSnd.play();
if (song_paused){
sndTrans.stop();
sndTrans= thisSnd.play(song_position);
song_paused=false;
}
}
function pauseF(event:MouseEvent):void{
song_position = sndTrans.position;
sndTrans.stop();
song_paused=true;
}
Y aquí te dejo los archivos si los quieres chequear:
http://ifile.it/byvdx9g