All pastes #792364 Raw Edit

Mine

public text v1 · immutable
#792364 ·published 2007-11-21 10:07 UTC
rendered paste body
MovieClip.prototype.fadeOut = function(){
	this.onEnterFrame = function(){
		if(this._alpha >0){
			this._alpha -=10;
		}
		else{
			delete this.onEnterFrame;
		}
	}
}

function allFadeout(){
	for(i = 0; i<=12; i++){
		this["image"+i].fadeOut();
                unloadMovie(this["image"+i]);
	}
}