I have the following group script for 19 checkboxes which puts the names of 19 
checkboxes into a field "final" when they are checked. However due to size 
restrictions of my window, I need to have the names of checkboxes to appear in 
an additional field when the first field cannot hold all of the checkbox names. 
I don't want to use scrollbars in my first field. How can I do this?

on mouseUp
   put the number of buttons of me into nbr
   repeat with n = 1 to nbr
      put the short name of button n of me into tName
      if not the hilite of button n of me then next repeat
      put tName & cr after theList
   end repeat
   put theList into field "final"
   repeat with i = 1 to the number of lines in field "final"
      put i &"."& space before line i of field "final"
   end repeat
end mouseUp

Charles Szasz
csz...@mac.com




_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to