Flex 中的动画 GIF
我正在尝试在我的 Flex 应用程序中添加 GIF 图像。但是它不显示动画。任何人都知道如何使 GIF 图像在 Flex 中工作
import mx.managers.PopUpManager;
private function onCreationCompleted():void
{
mx.managers.PopUpManager.centerPopUp(this);
}
]]>
</fx:Script>
<s:Image x="127" y="137" source="@Embed('assets/loading.gif')" width="87" height="85"/>
<s:Label x="88" y="73" text="Loading... Please wait" width="164" height="56" verticalAlign="middle" textAlign="center"/>
I am trying to add a GIF image in my flex application. However it is not showing animations. Anyone have idea how to make a GIF image work in flex
import mx.managers.PopUpManager;
private function onCreationCompleted():void
{
mx.managers.PopUpManager.centerPopUp(this);
}
]]>
</fx:Script>
<s:Image x="127" y="137" source="@Embed('assets/loading.gif')" width="87" height="85"/>
<s:Label x="88" y="73" text="Loading... Please wait" width="164" height="56" verticalAlign="middle" textAlign="center"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从表面上看,Flex 不提供对动画 gif 的支持。使用 swf 会容易得多。
此链接中提供了一些非常好的加载动画。使用
SWFLoader
。但是,如果您确实想在 Flex 中使用动画 gif,请阅读这篇博文。
http://iamjosh.wordpress.com/2009/02 /03/animated-gifs-in-flex/
您必须创建该博客文章中显示的类并将 as3gif 添加为包。
您可以从此处下载 as3gif
From the looks of it Flex does not provide support for animated gifs. It would be much easier to use a swf.
There are some very nice loading animations provided in this link. Use a
SWFLoader
.However if you do want to use animated gifs in Flex read this blogpost.
http://iamjosh.wordpress.com/2009/02/03/animated-gifs-in-flex/
You have to create the class shown in that blog post and add as3gif as a package.
you can download as3gif from here
我将 gif 转换为 swf 并将其动画化。
I convert gif to swf and it animated.