Hola Nniko():
Aquí tienes un ejemplo de como hacerlo.
En la Biblioteca al conido ponle como nombre:
Sonido1 y lo vinculas con el mismo nombre.
En el frame escribe éste código:
Código actionscript:
Ver originalthisSound = new Sound();
Sound1 = new Sound();
Sound1.attachSound("Sound1");
var Sound1added:Boolean = false;
if (Sound1added == false) {
thisSound.attachSound("Sound1");
Sound1added = false;
}
thisSound.stop();
thisSound.onSoundComplete = function() {
thisSound.stop();
};
btn.onRollOver = function() {
if (Sound1added == false) {
thisSound.stop();
thisSound.attachSound("Sound1");
thisSound.start();
Sound1added = true;
}
};
btn.onRollOut = function(){
thisSound.stop();
}
Al botón ponle como nombre de instania:
btn.
Espero haberte sido de ayuda.