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

draw circle

Get Adobe Flash player
by yoppa 07 Jan 2009
    Embed
package  {
	import flash.display.Sprite;

	public class DrawCircle extends Sprite {
		public function DrawCircle()
		{
			var circle:Sprite = new Sprite;
			circle.graphics.beginFill(0x3399FF);
			circle.graphics.drawCircle(240, 240, 80);
			addChild(circle);
		}
	}
}