Hello!
I will explain how everything is done on my site:
...and you can adapt everything to your project:
I have these movies:
1) main_mc -which contains the menu and the lower part of the site;
2) wipe_mc -the black rectangles that slide from right to left ;
3) home_mc, profile_mc, portofolio_mc, services_mc, contact_mc -which are the movies for every section of the site.
How it works:
When you press a button the menu selection is set to a certain value and the wipe_mc is loaded. The wipe_mc takes this value and loads the apropriate movie clip.
For example: i press the profile button: the menu_selection is set to "profile_mc.swf", the wipe_mc is loaded, it reads the value of the menu_selection and loads the profile_mc.
Actions:
1)on the button:
on(release) {
if(_level0.menu_selection =="your_mc.swf"
{ stop();
}
else {
_level0.menu_selection="your_mc.swf";
loadMovieNum("wipe_mc.swf",2)}
}
2)on the last frame of the wipe_mc:
loadMovieNum(_level0.menu_selection,1);
3) on the first frame of the "your_mc" movieclip:
_level2._visible=false
...because "your_mc" is loaded on level1 and the wipe_mc is already loaded on level2.
If it isn't clear you can post your questions.
AND don't forget: Everything i have explained here is Oldnewbie's idea and he desirves some stars from you!!!!! Regards,
Dragos.