Hi,
How can we add a splash screen to a Perspective project?
I have a GIF file that I would like to display when the client opens the Ignition project, before the main view loads.
Is there a recommended way to implement this?
Thank you for your support.
Hi,
Anybody have solution or idea please??
Can you just make a new page with the gif on it, show that on launch and then nav when it's done playing?
dillon
June 27, 2025, 1:12pm
5
Yes you can!
Page Configuration:
View onStartup script:
def runAction(self):
self.custom.future_time = system.date.addSeconds(system.date.now(), GIF_DURATION)
Custom Properties:
has_passed
Binding:
if(now() > {view.custom.future_time}, true, false)
has_passed
Change script:
def valueChanged(self, previousValue, currentValue, origin, missedEvents):
if currentValue.value:
system.perspective.navigate(view="LandingPage")
1 Like