"website.com" is a dummy url. I don't have access to the js file that opens the popup so I have no idea what the parent page's name is. I'm doing this wrong, I know.
function mouseUpHandler(event:MouseEvent):void {
var url:String = "http://www.website.com";
ExternalInterface.call("window.opener.location.href='" + url + "'");
ExternalInterface.call("self.close()");
}Closing the popup works, but not the url load,even if I comment out the line that closes the popup.
Thoughts?


