.swf in .swf

how do you make .swf files inside .swf files

say i have a movie but want a music bar can i make a new .swf and make it load by itself inside my main .swf.

then just upload both .swf files.

:-\

This should do the trick


createEmptyMovieClip("musicBarHolder", 1);

musicBarHolder.loadMovie("musicbar.swf");
//then you may also want to position the clip
musicBarHolder._x = 100;
musicBarHolder._y = 320;






here is a tutorial on the loading external .swfs
http://www.kirupa.com/developer/mx/full_site.htm

hope that helps

thats great, now i can load my site properly

now i can work on small parts and build it up

thanks alot

Cool, I actually helped somebody :beam: