Paquete | mx.events |
Clase | public class ColorPickerEvent |
Herencia | ColorPickerEvent ![]() ![]() |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Más ejemplos
Propiedad | Definido por | ||
---|---|---|---|
![]() | bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | |
![]() | cancelable : Boolean [solo lectura]
Indica si se puede evitar el comportamiento asociado al evento. | Event | |
color : uint
The RGB color that was rolled over, rolled out of, selected, or
entered. | ColorPickerEvent | ||
![]() | constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | |
![]() | currentTarget : Object [solo lectura]
Objeto que procesa de forma activa el objeto de evento con un detector de eventos. | Event | |
![]() | eventPhase : uint [solo lectura]
La fase actual en el flujo del evento. | Event | |
index : int
The zero-based index in the Color's data provider that corresponds
to the color that was rolled over, rolled out of, or selected. | ColorPickerEvent | ||
![]() | target : Object [solo lectura]
El destino del evento. | Event | |
![]() | type : String [solo lectura]
El tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
ColorPickerEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, index:int = -1, color:uint = 0xFFFFFFFF)
Constructor. | ColorPickerEvent | ||
![]() |
Duplica una instancia de la subclase Event. | Event | |
![]() |
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0. | Event | |
![]() |
Indica si un objeto tiene definida una propiedad especificada. | Object | |
![]() |
Comprueba si se ha llamado a preventDefault() en el evento. | Event | |
![]() |
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | |
![]() |
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo. | Event | |
![]() |
Indica si existe la propiedad especificada y si es enumerable. | Object | |
![]() |
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | |
![]() |
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento. | Event | |
![]() |
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual. | Event | |
![]() |
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | |
![]() |
Devuelve una cadena que contiene todas las propiedades del objeto de evento. | Event | |
![]() |
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
CHANGE : String = "change" [estática]
The ColorPickerEvent.CHANGE constant defines the value of the
type property of the event that is dispatched when the user
selects a color from the ColorPicker control. | ColorPickerEvent | ||
ENTER : String = "enter" [estática]
The ColorPickerEvent.ENTER constant defines the value of the
type property of the event that is dispatched when the user
presses the Enter key after typing in the color selector box. | ColorPickerEvent | ||
ITEM_ROLL_OUT : String = "itemRollOut" [estática]
The ColorPickerEvent.ITEM_ROLL_OUT constant defines the value of the
type property of the event that is dispatched when the user
rolls the mouse out of a swatch in the swatch panel. | ColorPickerEvent | ||
ITEM_ROLL_OVER : String = "itemRollOver" [estática]
The ColorPickerEvent.ITEM_ROLL_OVER constant defines the value of the
type property of the event that is dispatched when the user
rolls the mouse over of a swatch in the swatch panel. | ColorPickerEvent |
color | propiedad |
public var color:uint
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The RGB color that was rolled over, rolled out of, selected, or entered.
index | propiedad |
public var index:int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The zero-based index in the Color's data provider that corresponds
to the color that was rolled over, rolled out of, or selected.
If the event type is ColorPickerEvent.ENTER
,
will have default value -1; it is not set in this case because
the user can enter an RGB string that doesn't match any color
in the data provider.
ColorPickerEvent | () | Información sobre |
public function ColorPickerEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, index:int = -1, color:uint = 0xFFFFFFFF)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Constructor.
Parámetrostype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble up the display list hierarchy.
| |
cancelable:Boolean (default = false ) — Specifies whether the behavior associated with the event can be prevented.
| |
index:int (default = -1 ) — The zero-based index in the Color's data provider
that corresponds to the color that was rolled over, rolled out of,
or selected.
| |
color:uint (default = 0xFFFFFFFF ) — The RGB color that was rolled over, rolled out of,
selected, or entered.
|
CHANGE | Constante |
public static const CHANGE:String = "change"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The ColorPickerEvent.CHANGE
constant defines the value of the
type
property of the event that is dispatched when the user
selects a color from the ColorPicker control.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
color | The RGB color that was selected. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
index | The zero-based index in the Color's data provider that corresponds to the color that was selected. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
ENTER | Constante |
public static const ENTER:String = "enter"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The ColorPickerEvent.ENTER
constant defines the value of the
type
property of the event that is dispatched when the user
presses the Enter key after typing in the color selector box.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
color | The RGB color that was entered. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
index | Always -1. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
ITEM_ROLL_OUT | Constante |
public static const ITEM_ROLL_OUT:String = "itemRollOut"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The ColorPickerEvent.ITEM_ROLL_OUT
constant defines the value of the
type
property of the event that is dispatched when the user
rolls the mouse out of a swatch in the swatch panel.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
color | The RGB color of the color that was rolled over. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
index | The zero-based index in the Color's data provider that corresponds to the color that was rolled over. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
ITEM_ROLL_OVER | Constante |
public static const ITEM_ROLL_OVER:String = "itemRollOver"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The ColorPickerEvent.ITEM_ROLL_OVER
constant defines the value of the
type
property of the event that is dispatched when the user
rolls the mouse over of a swatch in the swatch panel.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
color | The RGB color of the color that the user rolled out of. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
index | The zero-based index in the Color's data provider that corresponds to the color that the user rolled out of. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 02:12 PM Z