Android Adobe Air 可以使用代码下载并运行 SWF 文件吗?
Android Adobe Air 可以使用代码下载 SWF 文件吗? 在我的 Flash Web 应用程序中,我可以下载某些子游戏的代码并动态运行它。 现在我需要使用 Adobe AIR 编写 Android 应用程序并保留与 Web 版本相同的功能,那么我可以从互联网下载 swf 文件,然后通过 Adobe AIR 启动它吗? 谢谢!
Can Android Adobe Air download SWF files with code?
In my flash Web application I can download code for some sub game and run it dynamically.
Now I need to write application for Android with Adobe AIR and leave the same functionality as in Web version, so can I download swf file from internet and then start it via Adobe AIR??
Thanx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以下载并运行 SWF 文件,但有一些限制:
http://help.adobe.com/en_US/air/security/WS485a42d56cd196415cc29732124ef23decb-7ffa.html
我们无法访问文件系统。
可以有两种解决方案:
http://blogs.adobe.com/emalasky/2008/04/remote_plugins.html
1)使用Sandbox Brigde API(在单独的沙箱之间进行通信)
2)签署模块并将其直接导入到应用程序沙箱
附加资源:
http://www.hufkens.net/2008/09/loading-remote-swf-files-in-air/
It is possible to download and run SWF files, but with some restriction:
http://help.adobe.com/en_US/air/security/WS485a42d56cd196415cc29732124ef23decb-7ffa.html
We have no access to file system.
There can be two solutions:
http://blogs.adobe.com/emalasky/2008/04/remote_plugins.html
1) Use Sandbox Brigde API (to communicate between separate sandboxes)
2) Sign modules and import it directly to application sandbox
Additional resource:
http://www.hufkens.net/2008/09/loading-remote-swf-files-in-air/