1. Download the GIFPlayer package
2. The source code is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <?xml version= "1.0" encoding= "utf-8" ?>
<s:Application xmlns:fx= "http://ns.adobe.com/mxml/2009"
xmlns:s= "library://ns.adobe.com/flex/spark"
xmlns:mx= "library://ns.adobe.com/flex/mx" minWidth= "955" minHeight= "600" >
<fx:Script>
<![CDATA[
import org.bytearray.gif.player.GIFPlayer;
private var gifPlay:GIFPlayer= new GIFPlayer();
private var gifPlay2:GIFPlayer= new GIFPlayer();
private function init():void{
var req:URLRequest= new URLRequest( "emergency/emergencyImg/mark.gif" );
gifPlay.load(req);
gifImg.addChild(gifPlay);
}
]]>
</fx:Script>
<fx:Declarations>
<!-- 将非可视元素(例如服务、值对象)放在此处 -->
</fx:Declarations>
<mx:TitleWindow title= "abc" id= "ADwindow" width= "400" height= "283" >
<mx:Image id= "gifImg" width= "221" height= "92" creationComplete= "init()" />
</mx:TitleWindow>
</s:Application>
|
Copy after login
For more flex tips on loading GIF images, please pay attention to the PHP Chinese website!