Card won't advance on mobile
Posted: Thu Jul 04, 2013 12:55 pm
				
				This problem doesn't exist on desktop, it only happens when I compile for mobile.
I have one stack and two cards. card 1 is "splash", card 2 is "application". It opens correctly on card 1 "splash", but doesn't proceed from there on mobile, but works just fine on the IDE. Is there something needed to destroy cards for mobile?
Mainstack:
card 1: "splash"
			I have one stack and two cards. card 1 is "splash", card 2 is "application". It opens correctly on card 1 "splash", but doesn't proceed from there on mobile, but works just fine on the IDE. Is there something needed to destroy cards for mobile?
Mainstack:
Code: Select all
on preOpenStack
   if the environment = "mobile" then
     mobileSetAllowedOrientations "portrait,landscape left,landscape right"
     mobileHideStatusBar
   end if
   set the alwaysBuffer of this stack to false
end preOpenStack
on openStack
   revFontLoad "Roboto-Regular.ttf"
   revFontLoad "Roboto-Condensed.ttf"
   revFontLoad "Roboto-BoldCondensed.ttf"
end openStack
Code: Select all
on openCard
   send gotoapp to me in 2 seconds
end openCard
command gotoapp
   go card "application"
end gotoapp
