Havaha Forums
You are not logged in.
ive always wondered how you edit the options from when you right click in flash as normally some of them can mess up your game or movie(rewind and forward)
im not sure whether this came under coding or flash so move if you want

Offline
to display as few options as possible, use this:
var menu:ContextMenu = new ContextMenu(); menu.hideBuiltInItems(); contextMenu = menu;
I always use this too; it hides the mouse again after a right click. (normally, a right click automatically shows the mouse).
menu.addEventListener(ContextMenuEvent.MENU_SELECT,context);
private function context(e:ContextMenuEvent):void {
//for the contextmenu; When something is selected, this will make the mouse disappear again
Mouse.hide();
}for other options, and adding custom items, check flash help.
Offline
Thanks for this site very helpful.
Offline