Hola Juandavo:
En el frame 200 coloca los botones Play y Stop con los nombres de instancia:
btn_play y
btn_stop
Crea otra capa para las acciones y en su frame 200 coloca éste código:
Código actionscript:
Ver originalstop();
var pausePoint:Number=0.00;
currently playing
var isPlaying:Boolean;
mp3 player
var soundChannel:SoundChannel = new SoundChannel();
var sound:Sound=new Sound(new URLRequest("pp_musicax.mp3"));
btn_stop.addEventListener(MouseEvent.CLICK, sonStop);
btn_play.addEventListener(MouseEvent.CLICK, sonPlay);
soundChannel=sound.play();
isPlaying=true;
function sonPlay(evt:MouseEvent) {
if (isPlaying) {
pausePoint=soundChannel.position;
soundChannel.stop();
isPlaying=false;
} else {
soundChannel=sound.play(pausePoint);
isPlaying=true;
}
}
function sonStop(evt:MouseEvent) {
if (isPlaying) {
soundChannel.stop();
isPlaying=false;
}
pausePoint=0.00;
}
Espero haberte sido de ayuda.