Hi folks,
I have a UIComponent subclass with Mouse-Over and Mouse-Out event handlers:
this.addEventListener(MouseEvent.MOUSE_OUT,
UI.mouseoutover_wrap(this, this.on_mouseout),
false, 0, true);
this.addEventListener(MouseEvent.MOUSE_OVER,
UI.mouseoutover_wrap(this, this.on_mouseover),
false, 0, true);
On Linux, both events types work. On Windows, only the mouse-out handler
works.
Has anyone seen this before? Any suggestions?
I'm on Flex 2.0.1 without any of the hotfixes. Will installing those help?
Many thanks,
Reid