flash on 2009-6-30

by hacker_9p8x8mco
♥0 | Line 13 | Modified 2009-06-30 17:31:00 | MIT License
play

ActionScript3 source code

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

package{
    import flash.display.Sprite;
    public class flashTest extends Sprite{
        public function flashTest(){
            this.graphics.beginFill(0xFFF000,1);
            var radius:Number = Math.random()*100;
            var x:Number = Math.random()*100;
            var y:Number = Math.random()*100;
            this.graphics.drawCircle(200,150,radius);
            this.graphics.endFill();
        }
    }        
}