i have the following scenario:
two Sprites A and B, whereas A contains a .png file with some transparent regions,for instance a black rectangle with a hole in the middle. B is a smaller Sprite with
some Graphics. B has a DisplayList index lower than A so that A covers B and B can only be seen when it is behind the hole in A.
I turn B into a button by adding an EventListener to it.
- When B is set as a Child of A, B can catch my MouseEvents.
- But when A and B are just siblings, B doesn’t receive any MouseEvent.
So, is there a way to make B “clickable” in case 2)
Keith