Explain about arguments of addeventlistener() method?
Answer / 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 |
What is display object?
How do I pass parameters to a pop-up window in actionscript? : adobe flex action script
Explain about remote object? What is end point in remote object?
What is the function of exclude or exclude class related to the data or class?
Can I continue to run flex builder 2 in parallel with flex builder 3 beta 3?
I have I input text field on stage and I have a button also, further I am writing some text in that input text field. I want to save my written data on my local system (on my computer), how can I do this?
Difference between swc and swf file?
What are the methods called when a ui component is intialized?
Is double-clicking supported on various components?
What is polymorphism in term of oop (flash actionscript)?
What is the difference between httpservice and data service? : adobe flex action script
Sometimes, if I do not move the mouse, "click" and "mousedown" do not work. Why is that? : adobe flex action script