I have a simple app with 6 small games on it, its for an assignemnt and I am not allowed to use storyboard, director etc. I have it setup that intially there is a menu screen with 6 images with event listeners which represent the 6 games. Touching one of these calls a require function and requires the associated file for the game.
When in any of the games I have a menu button at the top. I have an external module with a menu in it with the 6 images setup the same way as the other menu but i have it set off screen and it transitions down over the game screen im currently on.
At this stage you pick which game you want to play and then in the background I remove the display objects from the current game and require the one thats clicked. My issue though is if I try go back to one of the games have played already and require the file for that it loads a blank screen - its as if the display objects are gone from before and not being redrawn.
What can I do to redraw them or is there a better way around it - bare in mind as I said I cant use storyboard, director or composer so it has to be done manually.