For example, I have the class Bullet, with a constructor:
Bullet(start:Point, target:Point){…} // constructor
But, if this Bullet class extends the MovieClip class, how do I pass start and target into it? Right now I am using attachMovie to create instances of the class. (They behave correctly with the static properties set by the constructor, but to be useful it needs arguments.)