Flex 中的动画 GIF

发布于 2024-12-11 11:31:10 字数 554 浏览 1 评论 0原文

我正在尝试在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乱了心跳 2024-12-18 11:31:10

从表面上看,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

日裸衫吸 2024-12-18 11:31:10

我将 gif 转换为 swf 并将其动画化。

I convert gif to swf and it animated.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文