Load movie positioning

I can start an external swf file with the load movie command.
But how can I position the thing in my main movie?

Help, please!

when you load your movie, you’re giving your movie an instance name.

loadmovie(“myswf.swf”,“myemptymc”);

in this example, we use target instead of level. This means that you will have an empty MC called myemptymc. When you load myswf.swf, it will load into myemptymc and therefore adopt it’s position. If you still wanted to change positions, you could still do it anytime after the load…

loadmovie(“myswf.swf”,“myemptymc”);
myemptymc._x=200;
myemptymc._y=200;

Hope this helps.

thank u. been a big help