To just load another .swf into an existing Flash project (without a preloader):
1. Create a shape on the stage that is the same size as the .swf that you want to import. Turn it into a MC and give it an instance name (anything will do, i'll use menuHolder in this example).
2. Add the following actionscript to import your menu.swf into menuHolder
Code:
menuHolder.loadMovie("menu.swf")
Note: Make sure the registration point is in the upper left hand corner.
You could also use some of the other methods of the MovieClipLoader class (especially if you want a preloader).
HTH
Bookmarks