WTF how do u... control the load movie

new baby needs help…
i am have a main .swf i want to load other .swf into the main .swf
now i know how that works… and i know how to unload it too… what i dont know is how do i driect its position. look this is what i mean . when i click on the button to load another .swf its loads fine… however i want to load another .swf into the main .swf AT ANOTHER POSITION! how do u do that… i just cant find a way around that … please help
:-\

First off you have to make sure that both your main movie and your external movie have the same dimension, otherwise this won’t work properly. You have two options. First is to load your external swf into a positioned movieclip on the stage, and second is to position your level using actionscript.

First Code:

on(release){
loadMovieNum(“loadmovie.swf”, target_mc)
}

Second Code:

on(release){
loadMovieNum(“loadmovie.swf”, 1)
_level1._x = 300;
_level2._y = 250;
}
This same positioning can be used with your movie clip but you just have to change the _level1 to the instance name of your movieclip.

Hope this helps

Kyle

you could load the movie into a movie clip, then the top left corner of your loaded move starts at the registration point, it gives you much more control that way. It will then act the same as a normal movie clip. To do that

URL : mymovie.swf

location : Select “Target” from the drop down.

for the target select the movie clip you want to import it into.

you have to label the instance of the movie yr importing into, and the timeline of that movie will be replaced with the movie yr loading in.

yah it dint work…
:*(

i copied paste it and made the necessary changes yet dint work.

Someone please help out

this one for Kyle

thanks dude ur codes makes sense yet they dint work…

Try this instead, sorry I have to copy things from the actionscript window just sometimes I’m lazy:

Try this:
loadMovie(“load1.swf”, target_mc);
target_mc._x = 323;
target_mc._y = 188;

Hope this helps

Kyle:)

yeah… the “Num” is the trick

loadMovie(); for loading swfs into targets
loadMovieNum(); for loading swfs into levels.

same thing with variables.

loadVariables();
loadVariablesNum();