Page 1 of 1

How to get past splash screen

Posted: Tue Jan 08, 2013 9:23 am
by abanowBUSTfGf
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

Re: How to get past splash screen

Posted: Tue Jan 08, 2013 10:46 am
by dave_probertGA6e24
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