views:

36

answers:

1

I have a HBox with no background, but with some children. Behind the HBox is a button which need to be clicked. The button is unclickable at the moment because the HBox is on top of it. I need the button to be clickable and still have the HBox on top of it.

Is there a way to accomplish this, because I can't seem to find a solution...

+3  A: 
hBox.mouseEnabled=false;
hBox.mouseChildren=false;
Eran
mouseEnabled=false helped me, had to change a few things on the children but this is a better approach. thanks for your help.
MysticEarth