Hi All,
One can easily remove a listener like so:
circle.removeEventListener(MouseEvent.CLICK, maskSquare);
BUT, is it possible to remove a listener (or preferable ALL listeners) from an object WITHOUT knowing the function that the event is tied to?
e.g
circle.removeEventListeners(); ??
Cheers
-C