like alot of posts here, this really isnt a 'bug' per say, but the thing is, it makes me mad. i am gonna paste some small code with a dialog and some outputs.
Code:
dialog test {
  title "Test"
  size -1 -1 127 58
  option dbu
  box "Group Box", 1, 2 1 122 45
  text "", 2, 3 48 120 8
  button "Close", 3, 6 10 37 12
  check "Check Box", 4, 6 24 50 10
  radio "Radio Button", 5, 6 34 50 10
}
on *:dialog:test:mouse:*:{ did -ra $dname 2 $did }
alias open_ts_dg { dialog -md test test }

so, the thing is, when passing over the text area (id 2 at the bottom of the dialog), the number 2 will appear in the text field. when you pass over the background, you get 0. when you pass over the group box, you get 1. but, when passing over the button, the check box, and the radio button, you get the id of the group box. so, is it just that the script sees that you are in the group box, and nothing more? am i missing something...?
ANY input will help.