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?
