PDA

View Full Version : MX: loading a .swf to a specific place. Help



Marc
November 6th, 2002, 12:01 AM
Hi,

I've come accross loadMovieNum and loadMovie, I can use them to have the swf load up in to the top left hand corner but I can't seem to find out how to script it to the area I want it to load to.

Thanks

Deril
November 6th, 2002, 01:17 AM
Create MC, and load it there. you naw can place it where you like.

richie
November 6th, 2002, 04:52 AM
you can do something like this:
create an mc like "storing_mc" and use this script:

storing_mc.loadMovie("someMovie.swf");
and you can use properties too:
storing_mc._x = any-value;
storing_mc._y = another-value;

with this it's easy to put your movie into anyplace in the stage.

Marc
November 6th, 2002, 08:27 AM
Good stuff, I got the result that I wanted. Nice one for that Richie.



:)