loadMovie problems.... still :(

Right I don’t understand why I cant control each _x and _y position of the thumbs loaded into the movieClips?

It just displays one, I need them spaced so you can see them.

Code:

_root.createEmptyMovieClip(‘thumbHolder’, this.getNextHighestDepth());
thumbHolder._x = 0;
thumbHolder.y = 260;
//
for(var i=0;i<thumbArray1.length;i++){
var holder:MovieClip = thumbHolder.createEmptyMovieClip(‘btn_mc’+i, this.getNextHighestDepth());
var replace:MovieClip = thumbHolder[‘btn_mc’+i].createEmptyMovieClip(‘replaceMe’, this.getNextHighestDepth());
var thumb:MovieClip = thumbHolder[‘btn_mc’+i].replaceMe.loadMovie('images/thumbg1/thumbg1
’+i+".jpg");
empty[‘btn_mc’+i].x += 20;
var thumbIndex = i;
currentThumbs* = ;
trace(holder);
// put event handler on the parent movie clip mc_1
empty[‘btn_mc’+i].onRelease = function() {
infoField.visible=true;
//this.attachMovie(‘photo’+Math.floor(Math.random(2)), imageLoader, this.getNextHighestDepth());
startLoading('images/photog1/photog1
’+thumbIndex+’.jpg’, imageLoader);
}
}