All pastes #792370 Raw Edit

Mine

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

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