You can only call the superclass implementation from inside the subclass. If you want the superclass implementation from outside that, you have to make sure your runtime type of the object is a superclass type. Two possible solutions I can think of:
What you want to learn is object-oriented programming, not a particular language.
Using a superclass method which has been overridden in the object you are using breaches the customs of inheritance and
polymorphism; it ceases to be true object-oriented programming.