Pop quiz: In AS3, are static methods & variables inherited by subclasses?
Answer: No. Static methods and properties of classes are not inherited by subclasses. You can however access the static members of a parent class from within it’s subclasses.
This question came up today as I was helping...