0

我想在默认浏览器窗口中打开一个链接,所以我尝试了这篇文章中的方法:

http://sevenwire.com/blog/2009/08/26/adobe-air-opening-external-links-in-another-browser.html

但它有时有效,有时无效。很奇怪。

是否有强制空气应用程序在新的默认浏览器窗口/选项卡中打开链接?

4

1 回答 1

0

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

于 2013-09-05T08:47:19.887 回答