Ho un bottone con al passaggio richiama questa action:
pulsante.onRollOver = function() {
delete minimod.onEnterFrame;
minimod.onEnterFrame = function() {
if (this._currentframe<this._totalframes) {
this.nextFrame();
} else {
delete this.onEnterFrame;
}
};
};
pulsante.onRollOut = pulsante.onReleaseOutside=function () { delete minimod.onEnterFrame;minimod.onEnterFrame = function() {if (this._currentframe>0) {this.prevFrame();} else {delete this.onEnterFrame;}};};
sullo stesso bottone voglio che al clic vada al frame 2 con la seguente action:
on (release) {
_root.minimod.gotoAndPlay(2);
}
ma...
il problema è che se resto col puntatore sull'area sensibile del bottone tutto ok, quando sposto il puntatore fuori dall'area sensibile del bottone, la seconda action s'interrompe e s'incasina tutto![]()
Come faccio a far coesistere queste due azioni insieme?

Rispondi quotando
