loadMovie

How do I position a movieClip after I´ve loaded it (loadMovie)? Using a another MovieClip as target doesn´t seem to work. grrr.
Thanx!

JJ

Try using this…


loadMovie("yourMovie.swf", "loadToClip");

yourMovie.swf = the .swf file you want loaded.
loadToClip = the movie clip you want yourMovie.swf to load at (it will attach the upper left corner of yourMovie.swf to the clip)

Hope this helps!

hum… I didn’t even know about that the loadToClip thingy :slight_smile:
I just used
_root.mc.mc2.loadMovie(…);
:slight_smile: