I have tried minimizing the preOpenStack, openStack, and the preOpenCard handlers as noted here
--set the fullscreenMode of me to a modified version of "showall"
Code: Select all
on preOpenStack
put "true" into sAppStart --Will get canceled upon the first open card
if the environment is "mobile" then
MobileSetAllowedOrientations "portrait"
end if
set the defaultfolder to the engine folder
end preOpenStack
on OpenStack
##TODO activate when launched
--send "CheckPendingNotifications" to me in 15 seconds
send "BeginSession" to me in 50 milliseconds
end OpenStack
on PreOpenCard
put the width of this stack into gWidth
put gWidth * 0.04 into gGap
##Clear variables
put empty into field "Password Field" of me
put empty into pPass
put empty into aUserRecord
put empty into gPrevCard --Will pass opencard then log this card as the first entry
set the cSlideLoc of me to the loc of grp "Keyboard Slide" of me
set the icon of btn "Facebook Login Button" of me to 1058 --Light blue fb button
end PreOpenCard
-Will