this this an example:
http://www.diversioncentral.com/nigella/demohelp.html
demohelp.html is the main movie. Menu.swf is loaded at the end. find it under views>>actions and sounds overview. This menu.swf loads pics2.swf and pics3.swf. So there are 4 swfs for this demo.
this is done with loadMovieNum which I loaded the slide shows at level 20.
The menu.swf is loaded at level 10.
in the 1st button in the menu.swf you will find:
on (release) {
loadMovieNum("pics2.swf", 20);
}
in the 2nd button in the menu.swf you will find:
on (release) {
loadMovieNum("pics3.swf", 20);
}
the second button loads at level 20 also thus erasing the pics2.swf.
note:
in the slides movie fun files, you will need to add this to the first frame. (You must switch to advanced to do this.)
these are pics2.fun and pics3.fun
this._x = 400;
this._y = 50;
this is how I positioned the slide shows.)))
This is the best that I can explain it so look thru all the files before you try to figure it out. To me it is very simple, but it was not when I was first learning. My own home page is about 20-30 swf files which all work together.