loadMovie to an empty container movieclip
This is a sneaky little trick for loading a swf file into an emptyMovieClip
first you create an empty movie clip and then load the movie into the empty movie clip
and then you can place the loaded movie using the containers properties. ie _x and _y properties..
// ————————— //
stop();
// create an empty movie clip on the root
this.createEmptyMovieClip(”container”, this.getNextHighestDepth());
// load external movieclip swf file
loadMovie(”somefile.swf”, container);
// place the container where you want it..
container._x = 100;
container._y = 150;
// ——————————– //
