dipende. dove lo metti questo if? perchè se lo metti sulla _root non va, bisogna metterlo in un ciclo, come un onEnterFrame o un timer. oppure
function movalpha(clip,i) {
clip._alpha = 0;
clip.onEnterFrame = function() {
if (this._alpha<=100) {
this._alpha+=i;
} else {
_root.gotoAndStop(3);
delete this.onEnterFrame;
}
};
}