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

📄 wpa_code.as

📁 QS我也没用过
💻 AS
字号:
package
{
	import mx.core.Application;
	import mx.core.UIComponent;
	import mx.controls.List;
	import qs.containers.Landscape;
	import qs.containers.DataTile;

	public class WPA_code extends Application
	{
		public function WPA_code()
		{
			super();
		}
		
		[Bindable] public var posterSet:XML;
		[Bindable] public var posterList:List;
		public var landscape:Landscape;
		public var posterViewer:DataTile;
		
		protected function updateSelection():void
		{
			var child:UIComponent = null;
			var idx:Number= posterList.selectedIndex;
			if(idx >= 0)
				landscape.selection = [UIComponent(posterViewer.getChildAt(idx))];
			else
				landscape.selection = null;
		}		
		
	}
}

⌨️ 快捷键说明

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