remove the right click menu in flash 9

后端 未结 8 1942
时光说笑
时光说笑 2021-01-18 01:59

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

Any help greatly appreciated!

8条回答
  •  抹茶落季
    2021-01-18 02:27

    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.

提交回复
热议问题