ho un pulsante che a onRollOver mi richiama una movieclip che si scala, vorrei che si alfasse come posso fare?
pulsante
btnimage1.onRollOver = function() {
clip01.size(1840);
clip01._x = 555;
clip01._y = 300;
};
movieclip
clip._xscale = clip._yscale=100;
MovieClip.prototype.size = function(fdth) {
this.fdth = fdth;
this.onEnterFrame = function() {
f = (this.fdth-this._xscale)/17;
if (Math.abs(f)<.1) {
delete this.onEnterFrame;
} else {
this._xscale = this._yscale += f;
}
};
};
grazie

Rispondi quotando
