Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Secondary Menu in Movie Clip Not Working

Status
Not open for further replies.

jswidorski

Programmer
Aug 25, 2003
8
US
I have a movie clip that displays a menu of 5 options. If you mouseover one of the options, it goes to another label on the mc timeline and displays 3 more menu options. These menu options do not seem to be working at all. The cursor does not change into a hand and they are not clickable. The functionality can be seen at when you put your cursor over the "Processes" menu option.

I can make the fla available if necessary.

Thanks in Advance, John
 
Ok, I uploaded my .fla to
I fixed a majority of my problems, the last is the mouse over Processes. I am sure it has to do with the onRollOver firing over and over...

btnProcesses.onRollOver = function() {
if (_root.CurrentMenu != "Processes") {
_root.NextMenu = "Processes";
gotoAndPlay('Processess');
}
};

By the way, how "bad" does the code look. First flash website. Anything I can do to improve it?

Thanks, John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top