codice:
function movalpha(clip,i) {
clip._alpha = 0;
clip.onEnterFrame = function() {
if (this._alpha<100) {
this._alpha+=i;
} else {		
delete this.onEnterFrame;
_root.gotoAndStop(3); 
}
};
}