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