hello all,
I am having a problem with the MOUSE_OUT event. I have a Sprite which contains four instances of a movClip. the four instances are arranged in a vertical configuration much like a list. there are not spaces or over laps between the four instances. I want to register a listener with the containing Sprite. some this like this:
Code:
container.addEventListener(MouseEvent.MOUSE_OUT, trigger);
contrary to what I am trying to achieve, right now, the listener is triggered every time the mouse rolls out of each of the instances inside the "container" Sprite.
i tried have been experimenting with event phases but thats not work either. Any idea how that could be achieved? Any help would be greatly appreciated.