ancora una svista nella proto... scusa non ero molto in forma in questi giorni

codice:
MovieClip.prototype.alphaControl = function(bool){
	if(bool){
		this.onEnterFrame = function(){
			if(this._alpha > 0){
				this._alpha -= 10;
			} else {
				delete this.onEnterFrame;
			}
		}
	} else {
		this.onEnterFrame = function(){
			if (this._alpha<=0) {
				this._alpha +=10
			} else if (this._alpha>=100) {
				delete this.onEnterFrame;
			}
		}
	}
}
il resto del codice dovrebbe essere OK...