在flex中创建应用程序后是否可以加载swf文件?
在flex中创建应用程序后是否可以加载swf文件?如果是这样怎么办?
Is it possible to load a swf file after application creation in flex? If so how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用 SWFLoader类在运行时加载 SWF。您可以使用 MXML 标记声明所需的 SWF,也可以使用 load(url) 方法。
Yes, you can use the SWFLoader class to load SWFs at runtime. You can either declare the required SWF using an MXML tag or use the load(url) method.
如果您有紧密耦合的代码,但内置于不同的逻辑部分,您还可以使用模块加载器。
You can also use the module loader, incase you have a tightly coupled code , but built into different logical parts.