I'm trying to determine with the help of a mouse event if I'm over a specific component.
So right now I have two components, let's say buttonA and buttonB. ButtonA has a listener on it already listening for the mouse out event. ButtonB is flush against the edge of ButtonA.
I need to find out the code for it. Here is more details:
protected function _mouseOutHandler(event:MouseEvent):void
{
if (data.subCategories.length>0)
{
if (MOUSE IS NOT OVER BUTTONB) {
}
if (MOUSE IS OVER DROPDOWNB) {
}
}
}