flash on 2010-11-3
/**
* Copyright MITSU_HAL ( http://wonderfl.net/user/MITSU_HAL )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/pcUO
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public var s:Sprite;
public function FlashTest() {
// write as3 code here..
s = new Sprite();
s.graphics.beginFill(0xFF0000);
s.graphics.drawCircle(0,0,40);
s.graphics.endFill();
addChild(s);
s.x = stage.stageWidth/2;
s.y = stage.stageHeight/2;
}
}
}