PDA

View Full Version : Nvaigate Url to Current Browser Window



shapper
February 17th, 2010, 10:57 AM
Hello,

I have a MC with the following:
navigateToURL(new URLRequest(url));

However, when I click it it opens a new browser window.
Is it possible to load the target on the current browser window?

Thanks,
Miguel

lewi-p
February 17th, 2010, 11:27 AM
Try;

navigateToURL(new URLRequest(url), "_self");

I think it uses "_blank" by default.

lewi-p