Some notes on inheritance in ActionScript 2
When implementing super and subclasses, Flash will call the superclass’ constructor automatically unless you call it yourself.
Imagine you have the following code:
class Super { public function Super () { trace ("super called"); } } class Sub extends Super { } var myObject:Object = new Sub();