Help with "MovieClip.onEnterFrame"

I have this problem… imagine I’ve attached 4 MovieClips like this

for(i=1;i<=4;i++){
	this.attachMovie("MC","MC"+i,i);
}

Ok… everything it’s going fine… but… now I want to add the “onEnterFrame” function to the 4 of them… How do I do that ???

I’ve tried doing this :

for(i=1;i<=4;i++){
 	this.attachMovie("MC","MC"+i,i);
	this["MC"+i].onEnterFrame = function(){
		something();
	}
 }

And it WORKS !! But just for the Last MC attached !!!

Help please !!! THANKS !!! :frowning: