projectpanellargeimageloadinganim.mxml
来自「flex 实现的一个showcase 喜欢flex的朋友可以」· MXML 代码 · 共 37 行
MXML
37 行
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:controls="com.flexdotorg.controls.*"
width="64"
height="45"
backgroundAlpha="0"
backgroundColor="0x009900"
horizontalScrollPolicy="off"
verticalScrollPolicy="off"
creationComplete="creationCompleteHandler(event)">
<mx:Script>
<![CDATA[
//////////////////////////////////////////////////
//initialization
private function creationCompleteHandler(event:Event):void {
loadingIcon.filters = new Array(new GlowFilter(0x000000, 0.7, 8,8, 2, 1));
}
]]>
</mx:Script>
<mx:Label styleName="standardText" text="Loading Image" color="0xffffff" textAlign="center" />
<controls:LoadingIcon id="loadingIcon" x="23" y="23" />
</mx:Canvas>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?