⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loadingimage.mxml

📁 flex书效果代码
💻 MXML
字号:
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas 
	xmlns:mx="http://www.adobe.com/2006/mxml" 
	width="75" height="75"
	>
	
	<mx:Script>
		<![CDATA[
			
			private var _source:*;
			
			[Bindable]
			public function set source( value:* ):void
			{
				_source = value;
				spin.visible = true;
			}
			public function get source():*
			{
				return _source;
			}
			
			
			[Bindable]
			public var maintainAspectRatio:Boolean = true;
		]]>
	</mx:Script>
	
	
	<mx:SWFLoader id="spin" source="@Embed('assets/clock.swf')" width="75" height="75" trustContent="true" horizontalCenter="0" verticalCenter="0" />
	
	<mx:Image id="image" width="100%" height="100%" source="{source}" maintainAspectRatio="{maintainAspectRatio}" trustContent="true" complete="{spin.visible=false}" ioError="{spin.visible=false}" securityError="{spin.visible=false}" />
	
</mx:Canvas>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -