clickMeh.addEventListener(MouseEvent.CLICK,goThere);
function goThere(e:MouseEvent)
{
var url:String = "http://www.mysite.com/";
var request:URLRequest = new URLRequest(url);
navigateToURL(request,'_self');
}
i have this code but each time i click the button i'm getting new tab opened like it was "_blank" directive.
You cannot navigate the special windows "_self", "_top", or "_parent" if your SWF file is contained by an HTML page that has set the allowScriptAccess to "none", or to "sameDomain" when the domains of the HTML file and the SWF file do not match.– www0z0k Apr 28 '11 at 11:28