Reputation: 113956
How do you disable right clicking inside Flash Player content like FarmVille2? Notably, right clicking anywhere in the browser window does not work, ie. no menu shows up, so it must be JavaScript. Flash/AS3 itself has no means to disable the context menu within Flash Player (can be done in Adobe AIR).
Upvotes: 1
Views: 2812
Reputation: 1469
Seems a lot like this question here: Disable right click in flash with AS or from browser
in which case this might work:
stage.addEventListener(MouseEvent.RIGHT_CLICK,function():void{});
Upvotes: 2