remove the right click menu in flash 9

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

    This is a better option

    _level1._y = 195;
    var myMenu:ContextMenu = new ContextMenu();
    myMenu.hideBuiltInItems();
    _root.menu = myMenu;
    

提交回复
热议问题