For loops problem! Help!

Hi everyone!

Ok i’m really a sucker at looping and I really need help and i’m also real noob!!

Ok let me explain I got a MovieClip called ImagesHolder with the linkage name Images with 5 frames in it each one with a différent images in it. What I want is to be able to put 5 instances of the Mc and each one at 25 pixels intervals on the x and that each instances would be a differents frames of ImagesHolder.

Here I got so far (and thats not really far!) :

for(var i:int=0;i<5;i++)
{
var images1:IHolder=new IHolder();
this.x+=25; //this not working!!!
this.addChild(images1);
this.gotoAndStop(currentFrame+1);
}

any help would be really apreciated!!!