MovieClip.prototype.gestAlfa = function(mcNasc){
valore = 5;
this.onEnterFrame = function(){
(this._alpha < 100) ? this._alpha+=valore : delete this.onEnterFrame;
}
mcNasc.onEnterFrame = function(){
(this._alpha > 0) ? this._alpha-=valore : delete this.onEnterFrame;
}
}
-------------------------------------
il codice di sopra dove lo metto?
nella root o nella root della clip?
Scusa l'ignoranza....