Hello All!
here’s the scenario:
2 rectangle movieclips on stage that partially overlap. Let’s say mc1 and mc2.
A third movieclip (mc3) that we are dragging around and testing for collision with hitTest for every frame.
If mc3 is over the overlap area of mc1 and mc2, hitTest returns true for both movieclips (mc 1 and mc2).
Q: How can I control that hitTest function so that it only returns true for let’s say the one on top (mc1).
Thanks!