Hi guys,
Ok this is more of a “how do the rest of the world go about it” type question but basically, what kind of a screen manager do you guys use and by a screen manager, I’m talking about a class or classes which control the transitions from each screen of your Flash app.
Do you addChild your new DisplayObject but only animate everything in in an init() class then have a “clear everything off stage” method and use a singleton that holds a reference to the currently displaying class? Then when you want to change content, send in a reference to the new screen and your ScreenManager might hit the sendOut method of the currently displaying class and, when done, hit the init() method of the target one?
Would love to hear your thoughts as I feel my current setup could use a bit of an overhaul!