Ciao a tutti, dovrei attaccare un suono esterno.mp3 a btn1.onRollOver e onRollOut deve fermarsi il suono... come posso fare?
fscommand("allowscale", "false");
clip._xscale = clip._yscale=0;
MovieClip.prototype.size = function(wdth) {
this.wdth = wdth;
this.onEnterFrame = function() {
w = (this.wdth-this._xscale)/6;
if (Math.abs(w)<.1) {
delete this.onEnterFrame;
} else {
this._xscale = this._yscale += w;
}
};
};
btn1.onRollOver=function(){
xxxxxxxxxxxxxxxx
}
btn1.onRollOut=function(){
xxxxxxxxxxxxxxxx
}

Rispondi quotando