Wednesday, March 12, 2008

Access an ovelapped Button in flex

If you have a component which is overlapping a button, you will not able to access that button. To access a mouse event on that button, you should have to set the mouse children property of the above component to false.

For example:

myabovecomponent.mouseChildren = false;

No comments: