First, I'm not aware of a 3D Menu component, so my advice is based on generalizations on how Flash components are set up. If the author of the component didn't follow accepted best practices, then I can't help without first examining the component.
The first thing you should do is assign instance names to both components. The instance name is set in the properties panel. The instance name can be anything but it should be unique.
For examples sake, say we called them MENU1 and MENU2. If you wanted to attach an action to a movieclip called button within MENU2 from MENU1, you would use the following actionscript:
Code:
MENU1.button.onRelease = function() {
MENU2.button.gotoAndPlay();
}
Again, the above code says, when I click on the button movieclip within MENU1, gotoandPlay() button within MENU2.
If that doesn't help, post your .fla and I'll take a closer look.
Bookmarks