Hi,
When overriding an ancestor, you can call the ancestor's script by doing:
super::event pfc_some_event( )
Now what I have to do is call the script of the ancestor of the ancestor.
I've tried:
super::super::event pfc_some_event( )
but of course that didn't work.
The reason for this, is that I want to call the ancestor code of the ancestor (parent of the parent), but not of the parent itself.
I'm trying to avoid having to copy and paste the code of the ancestor's ancestor.
TIA
great!