I have an options menu which is a child of a child of Game. I want to set the button's colors to red/green depending on if the option is off/on. I can do that using self.parent.parent.isOptionEnabled. However in my init method, the options menu has not been added to the display hierarchy yet so therefor has no parent yet. So my solution was to just set the colors .1 seconds after init is called because the menu will have a parent reference by then. The problem is that I can't access the juggler using self.stage.juggler so I don't know what to do.
Sorry for being verbose, I realize I could've just asked how do I access the juggler outside of Game.
Thanks