Hi Folks, I have a menu that displays when a user MOUSE_OVER a button, displaying help options. I would like the menu to hide if the user moves the mouse out of the menu. I thought simply adding a MOUSE_OUT event listener to the menu would give the me the event to trigger the hide, however the MOUSE_OUT event is dispatched as soon as the mouse goes over the menu. What I would like is:
- if mouse is over button or menu, display the menu, else hide the menu How can I achieve this? Thanks, Greg

