Skip to content

Instantly share code, notes, and snippets.

@amowu
Created December 22, 2012 09:01
Show Gist options
  • Save amowu/4358141 to your computer and use it in GitHub Desktop.
Save amowu/4358141 to your computer and use it in GitHub Desktop.
Remove self closure function event listener.
var obj:DisplayObject = new DisplayObject();
obj.addEventListener(MouseEvent.CLICK, function(event:MouseEvent):void {
obj.removeEventListener(event.type, arguments.callee);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment