hehe..
non ho usato quel metodo, ma sembra che funzioni..
ecco come:
codice:
function OUT(){
_alpha = 100;
_xscale = 100;
_yscale = 100;
this.i=this._alpha;
this.i=this._xscale;
this.onEnterFrame=function(){
trace(this.i)
if(this.i!=0){
this.i-=20;
this._alpha = this.i;
this._xscale = this.i;
}else{
delete this.onEnterFrame;
}
}
}
A parte la questione _xscale che l'ho aggiunta dopo..
con questi parametri si ferma sullo 0% e non prosegue!
Perfetto anche sostituendo il mio"delete this.onEnterFrame " con il tuo "this.OnEnterFrame=undefined; "
davvero grazie!