Page 1 of 1

Troubleshooting card transition

Posted: Sun Sep 15, 2013 6:22 pm
by garyth123
Hi,

When I run my app on the simulator or on a device there is a transition between the first card and the next where two empty fields are briefly glimpsed -- they shouldn't be as I am using

lock screen for visual effect in rect "0,43,320,430"

These fields are not glimpsed in the LC stack, only in the simulator and and on the device.

In the Project Browser all fields are accounted for, and the fields that are glimpsed don't appear where the fields that belong on the second card are positioned as far as I can tell.

I hope I've managed to describe the problem. Does anyone have any ideas on how to troubleshoot this problem?

TIA.

Re: Troubleshooting card transition

Posted: Mon Sep 16, 2013 12:08 am
by Simon
Hi Gary,
If you don't have "put empty into field..." on any of your preOpenCard or other (maybe just comment it out for this test) you could just put this into a button
global i
repeat with x =1 to the number of fields of this card
add 1 to i
put i into field x
end repeat
OK so all that is doing is putting a number into a field :roll: but it will fill any hidden/unknown fields as well, at least when you see the 2 fields show up there would be something in them. Doing a search on field text will help you find them.
Run this on all your cards and save.

Simon