The InteractiveObject.setCapture() method no longer exists in ActionScript 3.0. If you need this functionality, you should use the capture phase of the event model by calling stage.addEventListener(MouseEvent.<event_name>, myMouseHandler, true) where <event_name> is the mouse event you wish to block. You can then emulate setCapture() by calling event.stopPropagation();
Peter Flash Player documentation Adobe Systems Incorporated
Comments