Hey im using flash develop 3.2.0 and im just getting started using AS3 i made this prog:
package
{
import flash.display.Shape;
import flash.display.Sprite;
public class Firstcircle extends Sprite
{
public function Firstcircle( )
{
var circle:Shape = new Shape( );
circle.graphics.beginFill( 0xff9933 , 1);
circle.graphics.drawCircle( 0 , 0, 40);
circle.x = 40;
circle.y = 40;
addChild(circle);
}
}
}
And its not letting me build and test it and it says type Firstcircle does not match fil:.....