Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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.

share|improve this question
1  
try '_top' or '_parent', also the reference says: 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
changed to _parent and allowScriptAccess to "always".... thanks – eugeneK Apr 28 '11 at 11:35

1 Answer

up vote 3 down vote accepted

Duplicating my comment to make the question answered:

try _top or _parent, also the reference says:

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.

share|improve this answer
yay, copying my comment "changed to _parent and allowScriptAccess to "always".... thanks" – eugeneK Apr 28 '11 at 12:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.