> create an empty movie...call it mainNav.SWF
I see what you're doing. Here's what I do: Say you have a target clip (your empty movieclip) in your main movie called 'target'. The empty moviueclip that will load in your nav needs to be referred to as its instance name when you're targeting your nav buttons.
Code:- _root.createEmptyMovieClip("target", 0);
- _root.target.loadMovie("yourMovie.swf", _root.target);
Copy Code If there's a button you want to add an event handler to in your nav, if it's loaded into the target clip via loadMovie as shown above, you can refer to the button like this:
Code:- _root.target.buttonName.onRelease = function() {
- //Do something...
- }
Copy Code hth,
Mike |