Can someone help me with this line of code?
When the button is pressed, it tries to open in a new tab or in a new window (depending on if you are using Firefox or IE) and first gets blocked by the pop up blocker.
How can I make this where it opens without targeting “_blank” ???
{
var targetURL:URLRequest = new URLRequest("http://nameofwebsite.com/about.htm");
navigateToURL(targetURL);
this.addEventListener(MouseEvent.CLICK, goURL);
}
Thanks in advance!