Hey guys,
I’m currently working on a platformer game, I have already made a working version with most things I want in it but I have started recoding from scratch as to make it easier for me to implement new features. So on this new version im working on the menu.
The base class of my flash project is called “constructor”. In constructor’s constructor it creates a new “mainmenu” which then in turn adds the different elements of the menu to the stage and manages the pressing of buttons. This all works fine, but what I want now is so you when press the “Play” button it runs a function from the “constructor” class. I know if it is the parent you can simply access it by childName.function(); but yeah, I have no clue how to do it in reverse.
Any help is appreciated =]