flash on 2012-3-16

by tepe
♥0 | Line 18 | Modified 2012-03-16 11:31:39 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.*;
    import flash.events.*;
    import flash.text.*;
    import flash.geom.*;
    public class FlashTest extends Sprite {
        private var s1:Sprite;
        private var mat:Matrix3D;
        public function FlashTest() {
            // write as3 code here..
            s1 = new Sprite();
            s1.graphics.lineStyle(1,0x000000);
            s1.graphics.beginFill(0xaaaaaa);
            s1.graphics.drawCircle(0,0,10);
            s1.graphics.endFill();
            addChild(s1);
            
        }
        
    }
}