I am trying to hide a set of text fields before the card is opened and
then show them with a dissolve.
The fields are named myLabel1, myLabel2 etc to myLabel8
It don't work.....
on preOpenCard
repeat with v = 1 to 8
put quote & "myLabel" &v& quote into h
set the visible of Field h to false
end repeat
end preOpenCard