remove the right click menu in flash 9

后端 未结 8 1968
时光说笑
时光说笑 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:24

    this code would also work

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

提交回复
热议问题