Welcome!
This is the community forum for my apps Pythonista and Editorial.
For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.
How do I quit a Scene from within?
-
How do I exit a scene from within? I want to show a series of scenes each being displayed for some time. How do I quit an instance of Scene?
-
@weirdnik see this topic or read doc
Scene.present_modal_scene(other_scene) Present another scene on top of this one. This can be useful for overlay menus etc. While the scene is being presented, it receives all touch events. Scene.dismiss_modal_scene() Close a scene that is being presented modally using Scene.present_modal_scene().
-
I think that CloudJump2 did this https://github.com/Pythonista-Tools but it would have to be reworked/retested with the newer modules.