swfLoader 与 mx 图像
我有一个应用程序要从 Flex 3 迁移到 Flex 4.5。在此应用程序中,有一些 mx Image 组件加载简单的 swf 文件(图像)。 Spark图像不加载swf文件,所以我想知道,我应该保留mx图像,还是应该将其更改为SWFLoader?使用其中之一有什么优点吗?
I have an application that I'm migrating from flex 3 to flex 4.5. In this application, there is some mx Image components that load a simple swf file (image). Spark image doesn't load swf files, so I was wondering, should I keep the mx Image, or should I change it to SWFLoader? Is there any advantages to using one or the other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读有关图像控制的 Adobe 文档:
正如它所声明和建议的那样,最好使用 Spark 架构,而不是 mx 架构(只要有可能。混合使用 Spark 和 mx 组件并不是一个好主意,但 Adobe 尚未将每个组件都迁移到 Spark)。我将选择
(这已经是
的新命名法。)Reading Adobe documentation about Image control:
As it states and recommends, it's better to use the spark architecture, instead the mx one (whenever it's possible. It's not a good idead to mix spark and mx components, but Adobe has not migrated every single component to spark yet). I'll go for
<s:SWFLoader />
(which is already a new nomenclature for<mx:SWFLoader />
.)