Cameron A. Ellis
Cameron A. Ellis

Reputation: 3881

remove the right click menu in flash 9

Is it possible, using actionscript 3 to disable the right click menu?

Any help greatly appreciated!

Upvotes: 8

Views: 22889

Answers (8)

Yago
Yago

Reputation: 11

Hello a couple of years later. I had the same problem but while using a touch-screen. If you keep the pointing device (my finger) touching the screen for more than a second the "right-click menu" will show up. I soved it going to the control panel under Windows7, "Pencil and input devices", Touch Tab, Actions, Turn off actions for "Keep pressed".

My windows is in spanish and the names are problably a bit different but I'm sure you'll know which button is which.

Upvotes: 1

Narusake
Narusake

Reputation: 21

this code would also work

var newMenu=new ContextMenu();
newMenu.hideBuiltInItems();
this.menu = newMenu;

Upvotes: 2

rustyx
rustyx

Reputation: 85286

If you can live with wmode opaque then you can intercept the right click at browser level as done here:

http://www.uza.lt/rightclick/

Upvotes: 0

raju-bitter
raju-bitter

Reputation: 8996

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.

Upvotes: 19

anjan
anjan

Reputation: 1

This is a better option

_level1._y = 195;
var myMenu:ContextMenu = new ContextMenu();
myMenu.hideBuiltInItems();
_root.menu = myMenu;

Upvotes: 0

Blizz
Blizz

Reputation: 8400

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

Upvotes: 3

Iain
Iain

Reputation: 9442

You can use:

stage.showDefaultContextMenu = false;

to hide everything but the settings option.

Upvotes: 24

Andy Webb
Andy Webb

Reputation: 1710

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

Upvotes: 4

Related Questions