Answer Posted / Devender Singh
The `addEventListener()` method in Adobe Flex takes three arguments: 1) The name or identifier of the event to listen for, 2) A callback function that will be executed when the event is fired on the specified target object, and 3) An optional `useCapture` Boolean value (defaults to `false`). If set to `true`, the listener will capture the event during the capture phase of the event propagation. If set to `false` (default), the listener will listen for the event during the bubbling phase.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers