I’m really stuck with this and it seems like such a simple problem to solve.
I am trying to get a nav button in one movie (main_nav.swf) to target a my main movie (index.swf) and load a sub nav movie (metals_subnav_infinite.swf) into it. The sub nav movie will do a similar task - loading a portfolio swf into main movie (index.swf).
Here is the file breakdown of my working files:
index.swf - main final movie which loads “main_nav_infinite3.swf” on start
main_nav_infinite3.swf - loads main nav “main_nav.swf” and scrolls it infinitely (infinite menu)
main_nav.swf - main nav with buttons that trigger sub nav “metals_subnav_infinite.swf” to load into index.swf
metals_subnav_infinite.swf - loads sub nav “metals_subnav.swf” and scrolls it infinitely
metals_subnav.swf - sub nav with buttons that trigger “folio.swf” (have not created this file yet!) to load into “index.swf”
The script I was focusing on is in main_nav.fla and it is:
metals_mc_bn.onRelease = function() {
reActivateMenu();
this.gotoAndStop(3);
this.enabled = false;
_level1.sub_nav_content_mc.loadMovie(“metals_subnav_infinite.swf”);
};
I haven’t yet activated all the buttons yet just the “Metals” button as the first to get working.
I have attached the FLAs.
exxie!