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!

3 flash movies loaded in another at the same time

Status
Not open for further replies.

Sirion

Programmer
Sep 10, 2003
4
DE
I wanted to amke a Homepage completely in flash so I made some design elements for my site... a headline with fading effects some buttons and one with the content

so now I wanted to create a fourth flash with the following commands:

_root.createEmptyMovieClip("head", 1);
loadMovie("headline.swf", "head");
head._x = 1 ;
head._y = 1 ;
_root.createEmptyMovieClip("control", 1);
loadMovie("buttons.swf", "control");
control._x = 1 ;
control._y = 121 ;
_root.createEmptyMovieClip("content", 1);
loadMovie("content.swf", "content");
content._x = 1 ;
content._y = 181 ;

now my problem is there is none of the three flash's showing up... it only works if I load only 1 :(
 
I even tried to load the first flash and in the first the second and so on ... it doesn't work :(
 
May I ask, why you're creating empty holder clips rather than having them already positioned on stage?

Can you post your .fla?

Regards,

cubalibre2.gif
 
IT works now... I've changed the 1 in a two and a three in the second and the third loading instruction and now it works...


why load empty movie clips? I don't know how to do it another way...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top