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.
