Re: Can anyone know about the RightClick option for menu in Flash Hi.. here is your answer..
Right Click menu in Falsh
Goals:
This project is used to create a right click menu.
Steps:
1) Create a Flash document.
2) Create a movieclip and right click the movieclip and goto action.
3) Copy the following code:
onClipEvent(load)
{
//MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("This movie is copyrighted by Your Company Name", doSomething);
Functioned2 = new ContextMenuItem("Visite Our Website", doSomething2);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
_root.menu = MENU;
function doSomething()
{
}
function doSomething2()
{
getURL("http://www.test.com", _blank);
}
} |