return to tutorial

Your code should look like this:

var circle:Sprite = new Sprite();
circle.graphics.beginFill(0x0099CC);
circle.graphics.drawCircle(260, 35, 25);
circle.graphics.endFill();
addChild(circle);

 

screenshot 3