- 2008年12月 3日 21:13
- ActionScript 2.0 | ActionScript 3.0
忘れやすいので、自分自身の為にもメモ
下記のスクリプトでas2,as3それぞれのコンテキストメニューの非表示化する
as2
this.menu = new ContextMenu() this.menu.hideBuiltInItems()
as3
this.contextMenu = new ContextMenu(); this.contextMenu.hideBuiltInItems()



