Monday, January 19, 2009

Customized your right click on flash movie menu.

add the following script on your flash file layer :

function doSomething(){}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("copyright your name", doSomething);
MENU.customItems.push(Functioned);
_root.menu = MENU;


why need to add this?
Prevent from a file stealer , warned by copyrighted message.

0 comments:

Post a Comment