Correct way in Flex to make a transparent panel respond to rollOver() events
问题 I have a Canvas in a Flex application which has items inside it that cover only about 50% of the area of the main canvas. i want the canvas to respond to rollOver events for the full area, and not just the area that is covered by the items inside. I have been setting the following attributes to achieve this : <mx:Canvas backgroundColor="white" backgroundAlpha=".01" rollOver="rollOver(event)">... This causes the entire canvas to respond to rollOver events. It works great - I'm just not happy