I have 2 screens, and now I have one button on the first screen that I need to click in order to go on the second screen.
It is possible to pass to the second screen without the need of the button? to have a timeout ? lets say show a welcome screen for 3-4 seconds and then show he second screen? (e.g. look mobile apps when you start them, most of them have "welcome screen").
thanks
Solved! Go to Solution.
Add Timer Control [https://powerapps.microsoft.com/en-us/tutorials/control-timer/] in Screen1 with following properties
Timer1: AutoStart : true Duration: 4000 OnTimerEnd: Navigate(Screen2,ScreenTransition.None)
The above sample will make the navigation to Screen2 after 4 seconds automatically.
Add Timer Control [https://powerapps.microsoft.com/en-us/tutorials/control-timer/] in Screen1 with following properties
Timer1: AutoStart : true Duration: 4000 OnTimerEnd: Navigate(Screen2,ScreenTransition.None)
The above sample will make the navigation to Screen2 after 4 seconds automatically.
great! Thanks
one more thing, I would like to hide it, but when i make "visible false" the timer does not work anymore.... it needs to have visible true?
Set "Visible" to "false" to hide the timer. Also even after hidding the timer, it still works, make sure you have set AutoStart to true.
when I make "false" does not work anymore... autostart is set to true.... when I make visible true it works normally
I have checked in PowerApps desktop app and web app, and this works fine for me. Try a new seperate app and check.
User | Count |
---|---|
132 | |
127 | |
78 | |
73 | |
70 |
User | Count |
---|---|
207 | |
199 | |
64 | |
63 | |
52 |