iOS Splash Screen masks display
J. Landman Gay
jacque at hyperactivesw.com
Fri May 25 23:04:02 EDT 2012
On 5/25/12 2:09 PM, Graham Samuel wrote:
> I found that if I put a script like this into the first card:
>
> on openCard
> wait 4 seconds
> go to "Card2"
> end openCard
>
> then the splash screen stays around for an extra 4 seconds, and the
> first thing the user sees is Card 2 - Card 1 is never visible.
The launch screen shouldn't matter, your app doesn't really start until
that disappears. What may be happening is that the "wait" command is
blocking, and preventing the first card from drawing. Try "wait 4
seconds with messages" and see if that helps.
If it doesn't, then use "send" instead:
on openCard
send "goCard" to me in 4 seconds
end openCard
on goCard
go to "Card2"
end goCard
--
Jacqueline Landman Gay | jacque at hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
More information about the use-livecode
mailing list