Helloooooowa,
I have created a menu that loads external swf files using this code:
MM_music.onRelease = function () {
_level0.myMCL.loadClip("music.swf", 30);
};
Check out www.theincisors.com to see its operation.
I am now testing a sub menu within one of these menu movie clips. When the mouse hovers over the movie clip, the sub menu movie clips appear.
The sub menu movie clips have this same code (with the intention of the user being able to click on the sub menu movie clips and the new swf file kicks the current swf out of level 30 and loads the new one) however the swf file fails to load to level 30.
I am assuming this is because the sub menu movie clip that the user is clicking on is not on the same time line (the root timeline) as the swf file that is currently on level 30, but is within the original menu movie clip.
How do I get the sub menu movies to load the new swfs onto the root timeline?
I have tried putting _root. in every possible place on the code to get it to load on the root timeline however I have had no luck.
I hope I have explained this clearly enough.
Thanks in advance for your helpings!