Listen to click event on overlapped sprites
问题 I have two sprites in my movieclip, one under the other, and i want both to listen to mouse clicks event. I found that only the top level sprite receives the event when i click on it. I need to dispatch the events on both, so I can't use mouseenabled=false. Is there a simple workaround for this? 回答1: You can use the ' getObjectsUnderPoint ' method native to the DisplayObjectContainer You can see how it works here: http://snipplr.com/view/34945/as3-trace-movieclips-under-mouse/ and the AS3