Page 1 of 1

do group messages exist?

Posted: Wed Jun 20, 2012 7:28 pm
by townsend
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?

Re: do group messages exist?

Posted: Wed Jun 20, 2012 7:39 pm
by mwieder
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?

Posted: Wed Jun 20, 2012 7:55 pm
by townsend
Excellent answer!

Thanks again Mark-- for the quick reply.