📄 samplecustomshape.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 + -