Salut !
Plus d'un an après j'ai exactement le même problème ! Le hic , c'est si je décoche l'option "exporter dans la première image" de mon son, mon son ne fonctionne plus....
Alors c'est quoi t'est ce qui va pas ?
Voici le code pour le son en question :
var mySound:Sound = new Sound();
mySound.attachSound("marley"); // marley est la liaison en cause...
mySound.setVolume(70);
mySound.start();
mySound.onSoundComplete=function():Void {
this.start();
}
var isPressed:Boolean = true;
this.bouton.gotoAndStop("debut");
this.bouton.onPress = function():Void {
if (this._parent.isPressed) {
this._parent.isPressed = false;
this.gotoAndStop("fin");
this._parent.mySound.stop();
}
else {
this._parent.isPressed = true;
this.gotoAndStop("debut");
this._parent.mySound.start();
}
}
this.bouton.onRollOver = function():Void {
this._parent.mySound.setVolume(30);
}
this.bouton.onRollOut = function():Void {
this._parent.mySound.setVolume(70);
}

Poueeeettttttttte !!!
