Customize Right click in Flash

Now you can customize your menu in Flash (right click)

how?

PASTE THE FOLLOWING ACTION IN THE ROOT OF THE FLASH FILE IN THE FIRST TIME FRAME.


function newrightclick(){}
function newrightclick2(){
getURL("[http://www.Test1URL.com](http://www.test1url.com/)", _blank);}
function newrightclick3(){
getURL("[http://www.Test2URL.com](http://www.test2url.com/)", _blank);}
MENU.customItems.push(Functioned3);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Just Text", newrightclick);
Functioned2 = new ContextMenuItem("URL 2", newrightclick2);
Functioned3 = new ContextMenuItem("URL 3", newrightclick3);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
MENU.customItems.push(Functioned3);
_root.menu = MENU;