I've got a group of buttons, grouped together, and I'm looking for some way
to capture a button click, at the group level, instead of at the button level.
I've tried, on menupick pName, but that only works for option buttons.
Of couse I tried, onMouseUp. Even that doesn't work.
I've also tried looking for messages in the Message Watcher but no group messages show up.
I checked Messages in the Dictionary but found nothing there.
Do Groups even have messages?
do group messages exist?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: do group messages exist?
mouseUp in the group should do the trick. But if you have a mouseUp handler in the button it will get the message first. You can either delete the mouseUp handler in the button or pass mouseUp in the button handler.
Re: do group messages exist?
Excellent answer!
Thanks again Mark-- for the quick reply.
Thanks again Mark-- for the quick reply.