Create a Shapes in Flash CS3:
This tutorial help you to Create a Shapes in Flash CS3 at run time.
Syntax:
var name:Shape=new Shape() //To create a variable.
name.graphics.beginFill(0); //Set Color to begin Fill
name.graphics.drawCircle(50,50,40); //Draw Circle
name.graphics.endFill(); //End...