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

📄 samplecustomshape.as

📁 《Flash AS3殿堂之路》光盘源码 学习ActionScript 3.0
💻 AS
字号:
package org.kingda.book.display
{
	import flash.display.Sprite;

	public class SampleCustomShape extends Sprite
	{
		public function SampleCustomShape() {
			var foo:StarShape = new StarShape(100, 100,
												  5, 20, 50,
												  0, 0xff9900);
			var bar:StarShape = new StarShape();
			var dd:StarShape = new StarShape(100, 100,
												  5, 20, 50,
												  0, 0x669900);
			bar.x = 100;
			bar.y = 120;
			addChild(foo);
			addChild(bar);
			addChild(dd);
		}
	}
}

⌨️ 快捷键说明

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