我想在默认浏览器窗口中打开一个链接,所以我尝试了这篇文章中的方法:
http://sevenwire.com/blog/2009/08/26/adobe-air-opening-external-links-in-another-browser.html
但它有时有效,有时无效。很奇怪。
是否有强制空气应用程序在新的默认浏览器窗口/选项卡中打开链接?
我想在默认浏览器窗口中打开一个链接,所以我尝试了这篇文章中的方法:
http://sevenwire.com/blog/2009/08/26/adobe-air-opening-external-links-in-another-browser.html
但它有时有效,有时无效。很奇怪。
是否有强制空气应用程序在新的默认浏览器窗口/选项卡中打开链接?
Yes. The second parameter in navigateToUrl() defines where to open the page.
If you use:
var url:URLRequest=new URLRequest("http://something.example.com/page.html");
navigateToURL(url,"_blank");
It will open the page in the new tab/page in default browser. More info at Adobe Actionscript Reference