| Paquete | spark.events |
| Clase | public class TrackBaseEvent |
| Herencia | TrackBaseEvent Event Object |
| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Más ejemplos
Elementos de API relacionados
Propiedades públicas
Métodos públicos
| Método | Definido por | ||
|---|---|---|---|
Constructor. | TrackBaseEvent | ||
![]() |
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 | |
Constantes públicas
| Constante | Definido por | ||
|---|---|---|---|
| THUMB_DRAG : String = "thumbDrag" [estática]
The TrackBaseEvent.THUMB_DRAG constant defines the value of the
type property of the event object for a thumbDrag event. | TrackBaseEvent | ||
| THUMB_PRESS : String = "thumbPress" [estática]
The TrackBaseEvent.THUMB_PRESS constant defines the value of the
type property of the event object for a thumbPress event. | TrackBaseEvent | ||
| THUMB_RELEASE : String = "thumbRelease" [estática]
The TrackBaseEvent.THUMB_RELEASE constant defines the value of the
type property of the event object for a thumbRelease event. | TrackBaseEvent | ||
Información sobre constructores
TrackBaseEvent | () | Información sobre |
public function TrackBaseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
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.
|
Información sobre constantes
THUMB_DRAG | Constante |
public static const THUMB_DRAG:String = "thumbDrag"| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The TrackBaseEvent.THUMB_DRAG constant defines the value of the
type property of the event object for a thumbDrag event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
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. |
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. |
THUMB_PRESS | Constante |
public static const THUMB_PRESS:String = "thumbPress"| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The TrackBaseEvent.THUMB_PRESS constant defines the value of the
type property of the event object for a thumbPress event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
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. |
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. |
THUMB_RELEASE | Constante |
public static const THUMB_RELEASE:String = "thumbRelease"| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The TrackBaseEvent.THUMB_RELEASE constant defines the value of the
type property of the event object for a thumbRelease event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
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. |
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
Ocultar propiedades públicas heredadas
Mostrar propiedades públicas heredadas