Flash player rightclick Menu (how to add my URL )

I want to add my URL into the flash player. when the user right click on the flash content. how to do that?

function custommenu(){
	getURL("http://www.yoururl.com", _blank);}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("your url", custommenu);
MENU.customItems.push(Functioned);
_root.menu = MENU;

:slight_smile: