Is it possible, using actionscript 3 to disable the right click menu?
Any help greatly appreciated!
You can use:
stage.showDefaultContextMenu = false;
to hide everything but the settings option.
Starting with Flash Player 11.2, it's possible now to override the behavior for the right button click on the mouse, e.g.
stage.addEventListener(MouseEvent.RIGHT_CLICK, function(e:Event){});
Here is the corresponding entry in the ActionScript 3 reference.
I don't think you can do this in AS3 (Adobe probably never put support in there because it would prevent the user from accessing the security settings).
There are ways to do it through HTML, etc.
Check out http://www.actionscript.org/forums/showthread.php3?t=175669
You can hide everything except for the Settings item, as said by Lain.
By the way: If you need to customize it you can use the ContextMenu class from the flash.ui package. Call hideBuiltInItems on it first to hide everything except for the Settings and then assign it to the menu property of the object you want to use the menu for (or root for the entire applet).
FYI, there is a nice tutorial about it that you can find here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With