I have some objects in a game which the player clicks to remove. The objects extend MovieClip and detect clicks with a MouseEvent.CLICK event listener.

I'd like the objects to be removed if the click is within a rectangular area surrounding the clicked pixel.

How should I go about doing this? Can I send off a truckload of mouse events, or should I write some kind of custom event handler?