# Help with Context Menu Please

**URL:** https://forum.kirupa.com/t/help-with-context-menu-please/187587
**Category:** flash
**Created:** [April 30, 2006, 7:27pm UTC](https://forum.kirupa.com/t/help-with-context-menu-please/187587 "2006-04-30T19:27:08Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![hogfish](https://avatars.discourse-cdn.com/v4/letter/h/b19c9b/32.png) [@hogfish](https://forum.kirupa.com/u/hogfish)
#### Post date: [April 30, 2006, 7:27pm UTC](https://forum.kirupa.com/t/help-with-context-menu-please/187587/1 "2006-04-30T19:27:08Z")

</div>

**Context Menu issues with bookmark script**  
I have a context menu I am working on. I am trying to [add a me nu Item that when pressed it [URL=“http://www.kirupa.com/forum/showthread.php?t=217444#”]will](http://www.kirupa.com/forum/showthread.php?t=217444#) bookmark the site in IE or Firefox.

This is what I have, but it is not working in either IE of FireFox

var myContxtMenu = new ContextMenu(); // myContxt will serve as our Context Menu object name

myContxtMenu.hideBuiltInItems();

\_root.menu = myContxtMenu;

var item1:ContextMenuItem = new ContextMenuItem (“Bookmark”, markIt, true);  
myContxt.customItems[0] = item1;

function markIt () {  
getURL (“javascript:\>window.external.AddFavorite(‘http: [//www.freedomland.com/’,'FL](https://www.freedomland.com/','FL)’);”);  
}
