Ciao, hai provato così?
codice:
for (i=0; i<6; i++) {
	named_mc = this["Clip_"+i];
	named_mc.onEnterFrame = function() {
		if (this._alpha<=40) {
			this._alpha += 5;
		} else {
			delete this.onEnterFrame;
		}
	};
}