Hi everyone,
I apologize if this topic has been covered before but I’ve been searching the internet high and low for solutions to my problem all day and have yet to find one that will work for me.
My problem is that I have a menu with 2 parts, one that is just symbols (meant as a quick select) and one that is revealed upon a rollover to show the titles for each symbol. What I would like to happen is for the rollover not to activate unless you hover your mouse over the button for a second, this way if your just quickly clicking through the symbols to view the projects you don’t have to see the full menu roll out every time. Any help would be much appreciated.
Alexis
I’ve attached a zip with my flash file and a swf to show you what it looks like right now. For a quick look though, here’s what the actionscript for each of my buttons on my menu looks like (all actionscript is on the main scene):
menu_mc.[COLOR=#000000]print_btn[/COLOR].[COLOR=#000000]addEventListener[/COLOR] COLOR=#000000[/COLOR];
[COLOR=#993300]function[/COLOR] onprintover[COLOR=#000000]([/COLOR][COLOR=#993300]e[/COLOR]: MouseEvent[COLOR=#000000])[/COLOR]:[COLOR=#993300]void[/COLOR][COLOR=#000000]{[/COLOR]
[COLOR=#993300]if[/COLOR] [COLOR=#000000]([/COLOR]menumask_mc.[COLOR=#000000]currentFrame[/COLOR] == [COLOR=#000000]1[/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
menumask_mc.[COLOR=#993300]gotoAndPlay[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#000000]}[/COLOR]
[COLOR=#993300]if[/COLOR] [COLOR=#000000]([/COLOR]menumask_mc.[COLOR=#000000]currentFrame[/COLOR] == [COLOR=#000000]16[/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
menumask_mc.[COLOR=#993300]gotoAndPlay[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#000000]}[/COLOR]
[COLOR=#993300]if[/COLOR] [COLOR=#000000]([/COLOR]line_mc.[COLOR=#000000]currentFrame[/COLOR] == [COLOR=#000000]1[/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
line_mc.[COLOR=#993300]gotoAndPlay[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#000000]}[/COLOR]
[COLOR=#993300]if[/COLOR] [COLOR=#000000]([/COLOR]line_mc.[COLOR=#000000]currentFrame[/COLOR] == [COLOR=#000000]16[/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
line_mc.[COLOR=#993300]gotoAndPlay[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#000000]}[/COLOR]
[COLOR=#000000]}[/COLOR]