Hilite uncheck one at a time
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Hilite uncheck one at a time
Hi Folks,
When I group radio buttons I can select to Hilite one at a time and it works fine. If I group check boxes I can also select to Hilite one at a time but unfortunately it doesn't work.
Any Thoughts?
Jim H
When I group radio buttons I can select to Hilite one at a time and it works fine. If I group check boxes I can also select to Hilite one at a time but unfortunately it doesn't work.
Any Thoughts?
Jim H
Indeed, the point of the checkbox lists is so that a user can choose multiple options from the list, whereas a radio group is deliberately mutually exclusive.
It's not hard to make a group of checkbox buttons do the same thing though:Put this in the group script and it should highlight the single most recently checked box.
If you want to have an action for each checkbox in the group then you can still code an individual script for the on mouseUp event in each checkbox (or use behaviors of course!) but you will also have to pass the mouseUp message in each handler.
It's not hard to make a group of checkbox buttons do the same thing though:
Code: Select all
on mouseUp
set the hilitedButton of me to zero
set the hilite of the target to true
end mouseUp
If you want to have an action for each checkbox in the group then you can still code an individual script for the on mouseUp event in each checkbox (or use behaviors of course!) but you will also have to pass the mouseUp message in each handler.