/** * Copyright yokikun ( http://wonderfl.net/user/yokikun ) * MIT License ( http://www.opensource.org/licenses/mit-license.php ) * Downloaded from: http://wonderfl.net/c/sRns */ package { import flash.display.Sprite; public class FlashTest extends Sprite { public function FlashTest() { // write as3 code here.. var s:Sprite = new Sprite(); // 水色で塗りつぶす s.graphics.beginFill( 0x00FFFF, 1 ); // 半径100の円を描画する s.graphics.drawCircle( 233, 233, 100 ); // ステージに表示する addChild( s ); } } }