on mouseUp
  repeat with x = 1 to the number of flds
   put empty into fld x
end repeat
end mouseUp

Now this works ok except that the card has some labels and the script clears
the label contents.

I use this sort of script which only clears editable fields.

on mouseUp
  repeat with x = 1 to the number of flds
   if the lockText of fld x is false then put empty into fld x
 end repeat
end mouseUp


Sarah

_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to