Hi -
I’m trying to create an empty movie clip and load a .swf, but the movie clips keeps showing up aligned to the top left corner. I know this is a common question, but I tried and tried, but my script is not working. Can anyone please tell me if I’m missing something? In desperate need of help.
on (release) {
_root.createEmptyMovieClip(“cont_mc”, 1);
cont_mc._x = 300;
cont_mc._y = 379;
cont_mc.loadmc = loadMovie(“Arch.swf”, 1);
}