In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: 【wonderfl本】drawCircle

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

// forked from Knuckle's 【wonderfl本】drawCircle
package {
    import flash.display.Sprite;
    import flash.text.TextField;
    public class DrawCircle extends Sprite {
        public function DrawCircle() {
            graphics.beginFill(0x00DD00);
            graphics.drawCircle(100,100,100);
            graphics.endFill();
            addChild(new myText);
            
        }
    }
}
 // package {
  	import flash.text.TextField;
   /* public */class myText extends TextField {
    		public function myText() {
    			x = 100;
    			y = 100;
    			text = "Display Object";
    		}
    }
    
   
//}