Thread: [Flash CS3] Double Rollover in a menu
View Single Post

  #1 (permalink)  
Old 07-07-08, 22:55
danielboccato danielboccato is offline
Junior Member
 
Join Date: Jul 2008
Posts: 1
Rep Power: 0
danielboccato is on a distinguished road
Arrow Double Rollover in a menu

Hi,

I am creating a menu. You can see what it looks like so far:

http://rogerioboccato.com/menu/menu.swf
http://rogerioboccato.com/menu/menu.fla

and this is the script:

AG_logo.stop();

hover.addEventListener(MouseEvent.ROLL_OVER,startC lip);
function startClip(e:MouseEvent):void {
AG_logo.gotoAndPlay(1);
}
hover.addEventListener(MouseEvent.ROLL_OUT,finishC lip);
function finishClip(e:MouseEvent):void {
AG_logo.gotoAndPlay(7);
}
my problem is that I want to add rollover actions on the menu items and make them clickable. This has been impossible because there is a giant invisible button (called "hover") that I have used to make the menu fade in when you rollover it and fade out when rollout...... This giant button overrides any kind of button action inside the menu. Any suggestions??

Is there a way to make the menu fade in when you rollover it without using a button (I don't the cursor to be changed into that little hand if it is not on top of a menu item, understand?)


I tried to be as clear as I can... If you have any questions, please let me know! I appreciate your help very much!!!

thanks
Reply With Quote