Robin Rodricks
Robin Rodricks

Reputation: 113956

Disable right click in Flash in web browsers

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

Answers (1)

wbrugato
wbrugato

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

Related Questions