Code: Select all
unhilite button "checkbox1"
unhilite button "checkbox2"
unhilite button "checkbox3"
unhilite button "checkbox4"

Many thanks
Bidge
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
unhilite button "checkbox1"
unhilite button "checkbox2"
unhilite button "checkbox3"
unhilite button "checkbox4"
Code: Select all
repeat with i = 1 to 10
unhilite button ("checkbox" & i)
end repeat
Code: Select all
repeat with i = 1 to the number of buttons in group "CheckboxGroup"
unhilite button i of group "CheckboxGroup"
end repeat