Positioning with actions

hey everybody…

i’m running the [FONT=Verdana][SIZE=4][COLOR=#003366]Reusable[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=4][COLOR=#003366] Preloader Using MovieClipLoader tutorial [/COLOR][/SIZE][/FONT]and it’s great, just that i put the actions on a 1024 x 768 document and can’t make the image to load on a specific location… i fanybody can help me would be really great

this is ths script:

bar._visible = false;
border._visible = false;
this.createEmptyMovieClip(“container”, “100”);
my_mc = new MovieClipLoader();
preload = new Object();
my_mc.addListener(preload);
preload.onLoadStart = function(targetMC) {
trace("started loading "+targetMC);
container._visible = false;
bar._visible = true;
border._visible = true;
pText._visible = true;
};
preload.onLoadProgress = function(targetMC, lBytes, tBytes) {
bar._width = (lBytes/tBytes)*100;
pText.text = “% “+Math.round((lBytes/tBytes)*100);
};
preload.onLoadComplete = function(targetMC) {
container._visible = true;
border._visible = false;
bar._visible = false;
pText._visible = false;
trace(targetMC+” finished”);
};
//buttons
boton1.onPress = function() {
my_mc.loadClip(“gol001.swf”, “container”);
};