Accessing other classes?

Hi, I have been pulling my hair out trying to access a parent class/object.
It’s easy calling a child object’s function:
MyChildObject.doMyFunction();
BUT how do you call a function from the child up?
I try stuff like: this.parent.doFunction(); …(not correct)
HOW? please?