コンテキストメニューから以下の関数を呼び出すと、グラフィックがクリアされます。呼び出しが別の関数内からのものである場合、そうではありません。なぜそれが機能しないのですか?
function removeFrame(e:Event=null):void{
holder.graphics.clear();
}
function cleanIt(e:Event=null):void{
removeFrame()
}
// NOT working by calling it like this:
cleanIt()
// It's Working if I call the function directly from the right-click menu:
menuitem1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,cleanIt);
ありがとう。ウリ