... one of their requirements is that I "Disable the Adobe Flash right-click context menu." I've been all over the internet, and these forums, looking for the solution. Mostly, what I find is "stage.showDefaultContextMenu = false," which I finally figured out needs to be "FlxG._game.stage.showDefaultContextMenu=false," but which doesn't seem to do anything, at all. Anyway, that apparently only hides some of the menu items. The other solution I see looks something like this:
var newMenu:ContextMenu = new ContextMenu();
newMenu.hideBuiltInItems();
this.menu = newMenu;
However, Flash chokes on "ContextMenu." I have no idea what package or library ContextMenu is part of, or how to import it into a StencylWorks project, even if I did. I see this question has been asked once or twice, but there doesn't seem to have been any real solution discovered. Can I disable the right-click menu in code, or not?