View Single Post
Old 11-03-2005, 07:26 PM  
MR2
Confirmed User
 
Join Date: May 2004
Location: where no one has ever been...
Posts: 482
hmm.. yes it is possible, nothing is impossible

basically you would just call the .swf to load into your main swf.
-----------
on (realease) {
loadMovieNum("contact.swf", 1);
}
-----------

that's loading by level.

another method is loading it by "target"
you simple make an empty movie clip, and give it an "INSTANCE NAME" somethin like, swfholder , then you load the swf inside that movie clip.

------------
on (realease) {
loadMovie("contact.swf", "swfholder");
}
------------

that's if you're loading them using a BUTTON.
if you will load them and put the action on the TIMEFRAME and not on the BUTTON. code will simply be like:

------------
loadMovie("contact.swf", "swfholder");
------------

it depends on how complex your animation is tho, i can't explain everything but that should give you the basic hint for loading external swfs.

__________________

MR2Creationz - High Quality Affordable Designs
ICQ: 323273199
MR2 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote