What is the difference between target and current target?
Answer Posted / Nitin Azad
In Adobe Flex, `target` refers to the specific object that an event was dispatched from, while `currentTarget` refers to the current object handling the event. The `currentTarget` is the object that receives the event first in the event propagation chain, and it can be the same as the `target` if the event doesn't bubble or capture.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers