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

📄 document.as

📁 跳动的五彩多边形
💻 AS
字号:
package  
{
	/*
	*	A Dancing Polygon Demonstration in Actionscript 3
	*   from shinedraw.com
	*/
	
	import flash.events.Event;	
	import com.shinedraw.drawings.DancingPolygon;	
	import flash.display.MovieClip;
	
	public class Document extends MovieClip{
		public function Document(){
			this.addEventListener(Event.ADDED_TO_STAGE, on_added_to_stage);
		}
		
		private function on_added_to_stage(e : Event):void{
			var dancingPolygon : DancingPolygon = new DancingPolygon();
			addChild(dancingPolygon);
		}
	}
}

⌨️ 快捷键说明

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