Forum Moderators: open
_root.createEmptyMovieCLip("holderClip");
holderClip.loadMovie("theMovieyouwanttoload.swf");
//now the movie you want to load has effectively taken over holderClip so you can just set x and y for holderclip and itll move the target movie
holderClip._x = 100;
holderClip._y = 250;
hth,
mcm