PDA

View Full Version : loadmovie and scenes


Shin
02-06-2003, 01:26 AM
I have a movie with three scenes in it and what I'm tring to do is load anoter .SWF file, useing LoadMovie, that will be visible on all scenes. Ive got it working but it loads in the top left corner and I don't know how to move its x y positions. I tried loading it into another MC but it dissapears any time I go to a new scene.



this is what I have in the first frame of the first scene.


loadMovie("soundslider.swf",1)





Thanks for the help

Billy T
02-06-2003, 03:01 AM
_level1._x=50;

should work

when loading into levels you are better off having all your movies with the same stage size and just position the content accordingly

shouldnt use scenes...

cheers

Shin
02-06-2003, 03:40 AM
THanks that helped alot. I had to resize the soundslider.swf to make it load in the correct pos.


thanks