I’m drawing an arrow as a <s:Path> and I need to get notified when the mouse is over it. How can I do that?
The arrow is an element of a Group container.
I tried registering for MOUSE_OVER events for both the container and the arrow and none seem to fire…
Path doesn’t extend InteractiveObject and therefore does not allow fur mouse interaction. Your best bet is to wrap up your path inside another component that can extend InteractiveObject, such as a Sprite.
You can make your own “ClickablePath” class.