That one is trickier as there is no built-in function for this (as far as I know).
I did however make a solution for one of my clients using URL parameters:
1) In App -> StartScreen, create a switch like below.
Switch(
Param("screen"),
"screen1",
Screen_1,
"screen2",
Screen_2,
...,
Home_Screen
)
You can name the Param anything you like, as long as you don't have spaces, and the screen names (the ones in speachmarks) with match with the screen below it. This list can go on indefinitely, but ensure the last entry is the screen you want to go to if there is no parameter.
2) After the code I gave you in the label, add:
& "?screen=screen1"
with "screen" being what is in the Param, and "screen1" the screen name.
Of course you could also have the screen name as a variable, but thats the basics of how it could work.
Please accept this as the solution if this works for you.