I tried doing this:
root.addEventListener(\"click\", function () { navigateToURL(ClickURLRequest,\"_self\"); });
And it
I use this sometimes:
var closure:Function = null; root.addEventListener("click", closure = function () { navigateToURL(ClickURLRequest,"_self"); }); root.removeEventListener("click", closure);