// Copyright 2007. Adobe Systems Incorporated. All Rights Reserved. package fl.events { import flash.events.Event; /** * The student_ar_fl_events_ColorPickerEvent class defines events that are associated with the ColorPicker component. * These include the following events: *
student_ar_fl_events_ColorPickerEvent.CHANGE
: dispatched when a user clicks a different color in the ColorPicker component.student_ar_fl_events_ColorPickerEvent.ENTER
: dispatched when a user presses the Enter key after entering a value in the text field of the ColorPicker component.student_ar_fl_events_ColorPickerEvent.ITEM_ROLL_OUT
: dispatched when the device pointer moves out of a color cell in the ColorPicker component.student_ar_fl_events_ColorPickerEvent.ITEM_ROLL_OVER
: dispatched when the device pointer moves over a color cell in the ColorPicker component.type
property for an itemRollOut
* event object.
*
* This event has the following properties:
*Property | Value |
---|---|
bubbles | true |
cancelable | true |
color | The current color value of the ColorPicker component. |
currentTarget | The object that is actively processing the event object with an event listener. |
target | The object that dispatched the event. The target is
* not always the object listening for the event. Use the currentTarget
* property to access the object that is listening for the event. |
type
property for an itemRollOver
* event object.
*
* This event has the following properties:
*Property | Value |
---|---|
bubbles | true |
cancelable | true |
color | The current color value of the ColorPicker component. |
currentTarget | The object that is actively processing the event object with an event listener. |
target | The object that dispatched the event. The target is
* not always the object listening for the event. Use the currentTarget
* property to access the object that is listening for the event. |
type
property of an enter
* event object.
*
* This event has the following properties:
*Property | Value |
---|---|
bubbles | true |
cancelable | true |
color | The current color value of the ColorPicker component. |
currentTarget | The object that is actively processing the event object with an event listener. |
target | The object that dispatched the event. The target is
* not always the object listening for the event. Use the currentTarget
* property to access the object that is listening for the event. |
type
property of the change
* event object.
*
* This event has the following properties:
*Property | Value |
---|---|
bubbles | true |
cancelable | true |
color | The current color value of the ColorPicker component. |
currentTarget | The object that is actively processing the event object with an event listener. |
target | The object that dispatched the event. The target is
* not always the object listening for the event. Use the currentTarget
* property to access the object that is listening for the event. |