Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loading Movies again

Status
Not open for further replies.

ninhovid

Technical User
Jul 1, 2003
29
MX
Hi...

i want to load 2 movies on my swf file (i'm doing it with Flash).. but those 2 movies were made with Swish 2.0
and i can't do the "this._x or this._y" on those 2 movies...
how can i load them on my flash file??? so they can't be in the same place...
i do this:

loadMovieNum("encabezado.swf","1");
loadMovieNum("central.swf","2");

this works.. but they block each other and i want the encabezado.swf to be at the top of my page and central.swf to be at the bottom of my page.

thanks in advance....
 
make an empty mc,

make a copy so that you have 2 of them

place the empty mc on the top left corner of wher u want the movie to loadinto, 1 empty mc for each swf that needs to be loaded.

name the MC's for example: mc1=loadmc1 mc2=loadmc2

then load your swf's into the MC's like this

loadMovie("encabezado.swf", "_root.loadmc1");
loadMovie("central", "_root.loadmc1");

tadaa, they work :)

now u can call the mc's by using _root.loadmc1 etc.





I learned a bit yesterday, today i learned a lot, imagine what i'll learn tomorrow!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top