flash on 2009-10-22

by junTMUG
♥0 | Line 15 | Modified 2009-10-22 11:57:53 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;

    public class FlashTest extends Sprite {
        
        public function FlashTest() {
            graphics.lineStyle(4);
            graphics.drawCircle(200, 200, 30);
            graphics.drawCircle(x + width, y + height, 10);
            graphics.lineStyle(2, 0x808080);
            graphics.drawCircle(300, 300, 30);
            graphics.drawCircle(x, y, 10);
            graphics.lineStyle(2, 0x800000);
            graphics.drawCircle(width, height, 10);
        }
    }
}