> Has anyone found a particularly good way of getting notification for
> each button in a radio group that gets UNhilited?
> I frequently have to do some cleanup for all buttons that become
> unhilited. Would be nice if I didn't have to loop through all radio
> buttons in a group especially given that the "Radio Behavior" property
> does most of what I need.
The only possible solution that I can see is to save the currently selected
button for each radio group to a global, and then to trap for the mouseUp
message in each group's script. The new radio selection would be saved
before exiting the script.
Have you noticed the behavior of the hilitedButton property under these
circumstances? In going from a "higher" radio option to a "lower" one,
the property is updated before your handler is called. When going from
a "lower" option to a "higher" one, the property isn't updated until after
your handler is exited.
Boyd