Trying to find a straight answer for this. I am going to be creating some sub classes in actionscript 3. I was wanting to know if it is possible to override the parent class. If so, do I need to put a override assigner on the parent class method or what.
Thanks guys
You can override any non-private method in your subclass.
And there is no keyword to indicate in the base class whether a method can or has to be overridden (like virtual in C++).