Flash Air iOS 开发:是否可以从应用程序内启动浏览器?
我使用Flash Air 开发iOS 游戏。如果能够从您的应用程序中启动浏览器,那就太好了。任何想法将不胜感激!
I use Flash Air to develop iOS games. It would be nice to be able to launch a browser from within your applications. Any ideas would be appreciated!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 StageWebView 打开AIR 应用程序中的网页。
以下是在屏幕右半部分(也称为舞台)打开页面的示例用法:
You can use StageWebView to open a web page within your AIR app.
Here's a sample usage to open a page on the right half of the screen (aka stage):
调用
navigateToURL()
(docs)将系统浏览器应用程序启动到您指定的 URL(将您的应用程序留在后台):Calling
navigateToURL()
(docs) from an AIR app launches the system browser app to the URL you specify (leaving your app in the background):使用 AIR 特定类 HTMLControl 怎么样?
据我了解,您希望在屏幕应用程序的一部分中启用网络导航。
http://www.mikechambers.com/blog/2007/11/09/using-the-htmlcontrol-in-adobe-air-to-parse-html-as-a-data-source/
How about using the AIR specific class HTMLControl ?
As I understand you want to enable web navigation withing a portion of your screen app.
http://www.mikechambers.com/blog/2007/11/09/using-the-htmlcontrol-in-adobe-air-to-parse-html-as-a-data-source/