- Joined
- Jun 7, 2013
- Messages
- 1,393
- Reaction score
- 210
- First Language
- English
Lets say your in Scene A and you do Scene.push(Scene
and in Scene B you hit escape. How would you pop SceneA and B off the stack?
In Scene B you can do Scene.pop() but that wont clear Scene A.
If this is not possible how do you reload Scene A after Scene B has been popped? Situation for this is that:
In Scene A, you have a selectable window, you scroll up and down and the right hand side window updates. This works because in scroll down and up I call TheWindowObject.refresh().
How ever it seems that once I hit enter to enter into Scene B and then escape to go back in to Scene A, scrolling up and down doesn't update the right hand side window any more. even though the refresh method is being called.
How do you pop all scenes when you pop one or How do you reload the scene you came from when you pop the one you are in
In Scene B you can do Scene.pop() but that wont clear Scene A.
If this is not possible how do you reload Scene A after Scene B has been popped? Situation for this is that:
In Scene A, you have a selectable window, you scroll up and down and the right hand side window updates. This works because in scroll down and up I call TheWindowObject.refresh().
How ever it seems that once I hit enter to enter into Scene B and then escape to go back in to Scene A, scrolling up and down doesn't update the right hand side window any more. even though the refresh method is being called.
How do you pop all scenes when you pop one or How do you reload the scene you came from when you pop the one you are in
Last edited by a moderator:
