flash on 2010-5-19

by telcanty
♥0 | Line 11 | Modified 2010-05-19 06:48:46 | MIT License
play

ActionScript3 source code

/**
 * Copyright telcanty ( http://wonderfl.net/user/telcanty )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/w6sv
 */

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var circle:Sprite = new Sprite();
            		circle.graphics.beginFill(0xffffff);
            	    circle.graphics.drawCircle(0,0,10);
            	addChild(circle);
            	
        }
    }
}