How to get past splash screen

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
abanowBUSTfGf
Posts: 63
Joined: Sat Dec 22, 2012 3:01 am

How to get past splash screen

Post by abanowBUSTfGf » Tue Jan 08, 2013 9:23 am

I've put a splash screen as a card at the start of my stack. How do I run the app
so it pauses for 2 seconds and then moves on to the next card?
Thanks

dave_probertGA6e24
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 328
Joined: Mon Dec 05, 2011 5:34 pm
Contact:

Re: How to get past splash screen

Post by dave_probertGA6e24 » Tue Jan 08, 2013 10:46 am

Hi,

on the card script for the splash card:

Code: Select all

on openCard
  send "moveon" to me in 2 seconds
end openCard

on moveon
  go to next card
  // or whatever other code you need here
end moveon 
the 'moveon' handler can be called whatever you want.

Hope that helps.
Dave
Coding in the Sun - So much Fun.
Visit http://electronic-apps.info for released App information.

Post Reply