Hi,
I have a Welcome page while launch, I would like to navigate to another page after 10 seconds automatically...How to achieve this in perspective?
Hi,
I have a Welcome page while launch, I would like to navigate to another page after 10 seconds automatically...How to achieve this in perspective?
2 custom props on the view, openDatetime bound to now(0) and autoNav bound to dateIsAfter(now(), addSeconds({view.custom.openDateTime}, 10))
Then add an on change script to autoNav to do the navigation if currentValue.value is true
10s is a long time to wait though... I'd give them a button as well
isAfter is not supported in Perspective expression
Sorry, should have said dateIsAfter. I've corrected my post
Could also do secondsBetween({view.custom.openDateTime}, now()) > 10, there is a *between expression for most of datetime parts *Between | Ignition User Manual