Hola stpy:
Bienvenido al Foro.
No dices como cargas el sonido.
Aquí un ejemplo para cargar el sonido y detenerlo al ir a otro frame:
Código actionscript:
Ver originalvar miSonido:Sound=new Sound(new URLRequest("nombre.mp3"));
var sc:SoundChannel=miSonido.play();
ilustrador_btn.addEventListener(MouseEvent.CLICK, stopSound);
function stopSound(e:Event):void {
sc.stop();
gotoAndPlay("playIlustrador");
}
stop();
Espero haberte sido de ayuda.