Disable Right Click In Flash With As Or From Browser
My question is simple. I want to disable mouse right click on my FLASH GAMES website, so that players cannot leave my website when right clicking a game and clicking on 'ABOUT FLAS
Solution 1:
If you're using Flash Player 11 try
stage.addEventListener(MouseEvent.RIGHT_CLICK,function(e:MouseEvent):void{});
More details in this tutorial.
Post a Comment for "Disable Right Click In Flash With As Or From Browser"