vote up 2 vote down star
2

I tried doing this:

root.addEventListener("click", 
   function () 
   { 
      navigateToURL(ClickURLRequest,"_self"); 
   });

And it does add the event listener. I like using closures because they work well in this situation,

however, removing the event listener requires a reference to the original function, and since I used an anonymous closure, it does not work, I tried:

   root.removeEventListener("click", 
       function () 
       { 
          navigateToURL(ClickURLRequest,"_self"); 
       });

as well as:

   root.removeEventListener("click", function () {} );

The only way I found it would work was to ditch the anonymous closure and point the event listeners at a pre-existing function:

 function OnClick (e:Event)
 {
     navigateToURL(ClickURLRequest,"_self");
 }

 root.addEventListener("click", OnClick);
 root.removeEventListener("click", OnClick);

Does anyone know a way to use anonymous closures for event handlers while still retaining the ability to remove them?

flag

53% accept rate

7 Answers

vote up 2 vote down

You can think of the function() keyword as a constructor, creating a new object (a closure) each time. Therefore, if you create the closure just for as a parameter and don't retain a reference anywhere, there's no way to get a hold of "the same" closure somewhere else.

The obvious solution is what you don't like, defining the function before using it. Of course, it can still be a full closure and not just a 'static-like' function. simply define it in the context you want, and assign it to a local variable.

link|flag
Yes, i agree with Javier. If you don't retain the reference, you can't remove that function. – lk Oct 7 '08 at 18:51
vote up 0 vote down

I'm not sure if this will work but its worth a shot:

root.removeEventListener("click", arguments.callee );

More information about it can be found Flex lang ref

link|flag
No JustFoo, this doesn't work. – lk Oct 7 '08 at 19:04
vote up 8 vote down

Here's a generic way of removing event listeners that i have used on production projects


addEventListener
(
    Event.ACTIVATE, 
    function(event:Event):void
    {
    	(event.target as EventDispatcher).removeEventListener(event.type, arguments.callee)				
    }
)
link|flag
I second this. Also note that you've made a typo in the example: "argumnts" – hasseg Oct 7 '08 at 20:53
whoops my bad, it's fixed now ;) – Brian Heylin Oct 9 '08 at 10:31
Brilliant! Would never have thought of that one myself. – Martin Oct 21 '08 at 15:29
vote up 0 vote down

It's not too much different than using a defined function, but maybe this will satisfy your needs. Remember that Functions are first-class objects in ActionScript and you can store and pass them around as variables.

protected function addListener()
{
    m_handler = function(in_event:Event) { removeEventListener(MouseEvent.CLICK, m_handler); m_handler=null}
    addEventListener(MouseEvent.CLICK, m_handler)
}
protected var m_handler:Function
link|flag
vote up 0 vote down

Just a side note on your code that I came across in the Flex In A Week set of tutorials on the Adobe web site. There, they said you should always use the constants for the event types rather than the string. That way you get typo protection. If you make a typo in the event type string (like say "clse"), your event handler will get registered but of course never invoked. Instead, use Event.CLOSE so the compiler will catch the typo.

link|flag
vote up -1 vote down

I dont know what you're actually doing but in this particular example perhaps you could have a _clickEnabled global variable.

Then inside the event handler you just check _clickEnabled, and if its false you just return immediately.

Then you can enable and disable the overall event without detaching and reattaching it.

link|flag
vote up 0 vote down

I found myself doing this a lot so I tried this. Seems to work fine.

addSelfDestructiveEventListener('roomRenderer', 'complete', trackAction, 'floorChanged');

private function addSelfDestructiveEventListener(listenee:*, event:String, functionToCall:Function, StringArgs:String):void
{
    this[listenee].addEventListener(event, function(event:Event):void
    	{
    		(event.target as EventDispatcher).removeEventListener(event.type, arguments.callee);
    		functionToCall(StringArgs);
    	})
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.