@Anonymous - my steps:
1. Create your Success screen.
2. On the main screen, enter the following onto a button/control/expression which is going to trigger the navigation to the Success screen.
Navigate(Your_Success_Screen_Name,ScreenTransition.Fade)​
3. On the Success screen, insert a Timer control.
4. Change the AutoStart property of the timer control to true. This will automatically start the timer control when the Success screen has been navigated to.
5. On the OnTimerEnd property, enter the following:
Navigate(Your_Main_Screen,ScreenTransition.Fade)​
6. On the Duration property of the timer control, set the duration (e.g. 5000 = 5 seconds)
7. Hide the timer control
8. Ensure you have the app running in Play mode when testing
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution
If you like my response, please give it a Thumbs Up.