Hi,

I found this code somewhere and it does exactly what i want but it's as2 and i don't know how to port in to as1:

var myMCL:MovieClipLoader = new MovieClipLoader();
var ml:Object = new Object();
ml.onLoadInit = function(target_mc:MovieClip) {
target_mc._x = 50;
target_mc._y = 50;
}
myMCL.addlistener(ml);

_root.createEmptyMovieClip("container_mc",1);
myMCL.loadClip("pic1.jpg", container_mc);

Any help would be appreciated!