# Flash website drop down menu help

**URL:** https://forum.kirupa.com/t/flash-website-drop-down-menu-help/296690
**Category:** Uncategorized
**Created:** [September 18, 2009, 10:56am UTC](https://forum.kirupa.com/t/flash-website-drop-down-menu-help/296690 "2009-09-18T10:56:42Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![guvenc](https://avatars.discourse-cdn.com/v4/letter/g/ac91a4/32.png) [@guvenc](https://forum.kirupa.com/u/guvenc)
#### Post date: [September 18, 2009, 10:56am UTC](https://forum.kirupa.com/t/flash-website-drop-down-menu-help/296690/1 "2009-09-18T10:56:42Z")

</div>

i’m trying to create a flash website using AS 3.0. i watched several about creating drop down menus, and i created my menu. my problem is that i can’t tell buttons to go to content pages. i’m pretty sure that my script is not complete. when i publish the fla i don’t get any errors after working on it for some time but my menu is not working.

here is my script. if you want to take a look at my fla file i can give a link for it. thanks for the help.

var navBtnGlow:GlowFilter = new GlowFilter(0x912045,0.5, 0, 15, 1, 2, true,false)  
navBar\_mc.addEventListener(MouseEvent.MOUSE\_OVER, navOverF);  
navBar\_mc.addEventListener(MouseEvent.MOUSE\_OUT, navOutF);

function navOverF(event:MouseEvent):void{  
event.target.filters = [navBtnGlow];  
navBar\_mc.setChildIndex(event.target as MovieClip, 1);  
dropMenus\_mc.gotoAndStop(navBar\_mc.getChildAt(1).name);  
trace(“We are Rolled Over…” + navBar\_mc.getChildAt(1).name)  
}  
function navOutF(event:MouseEvent):void{  
event.target.filters = [];  
}  
navBar\_mc.referanslar.onRelease = function(){  
content\_mc.gotoAndStop(“referanslar”)  
}  
navBar\_mc.iletisim.onRelease = function(){  
content\_mc.gotoAndStop(“iletisim”)  
}

dropMenus\_mc.portfolyoFrame\_btn.btnHakkimda.onRelease = function(){  
content\_mc.gotoAndStop(“hakkimda”)  
}  
dropMenus\_mc.portfolyoFrame\_btn.btnHizmetler.onRelease = function(){  
content\_mc.gotoAndStop(“hizmetler”)  
}
