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
How to get past splash screen
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
-
- Livecode Opensource Backer
- Posts: 328
- Joined: Mon Dec 05, 2011 5:34 pm
- Contact:
Re: How to get past splash screen
Hi,
on the card script for the splash card:
the 'moveon' handler can be called whatever you want.
Hope that helps.
Dave
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
Hope that helps.
Dave
Coding in the Sun - So much Fun.
Visit http://electronic-apps.info for released App information.
Visit http://electronic-apps.info for released App information.