Paquete | org.osmf.events |
Clase | public class TimeEvent |
Herencia | TimeEvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versiones de producto: | OSMF 1.0, OSMF para Flex 4.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Propiedades públicas
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 | ||
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 | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
time : Number [solo lectura]
New time value resulting from this change. | TimeEvent | ||
type : String [solo lectura]
El tipo de evento. | Event |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Constructor
| TimeEvent | ||
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 | ||
---|---|---|---|
COMPLETE : String = "complete" [estática]
The TimeEvent.COMPLETE constant defines the value
of the type property of the event object for a complete
event. | TimeEvent | ||
CURRENT_TIME_CHANGE : String = "currentTimeChange" [estática]
The TimeEvent.CURRENT_TIME_CHANGE constant defines the value of the
type property of the event object for a currentTimeChange event. | TimeEvent | ||
DURATION_CHANGE : String = "durationChange" [estática]
The TimeEvent.DURATION_CHANGE constant defines the value
of the type property of the event object for a durationChange
event. | TimeEvent |
Información sobre propiedades
time | propiedad |
time:Number
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versiones de producto: | OSMF 1.0, OSMF para Flex 4.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
New time value resulting from this change. For currentTimeChange events, this corresponds to the currentTime property. For durationChange events, this corresponds to the duration property. For complete events, this is unused.
Implementación
public function get time():Number
Información sobre constructores
TimeEvent | () | Información sobre |
public function TimeEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, time:Number = NaN)
Versión del lenguaje: | ActionScript 3.0 |
Versiones de producto: | OSMF 1.0, OSMF para Flex 4.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Constructor
Parámetrostype:String — The type of 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.
| |
time:Number (default = NaN ) — The new time for the event. The property to which this value applies depends
on the event type constant.
|
Información sobre constantes
COMPLETE | Constante |
public static const COMPLETE:String = "complete"
Versión del lenguaje: | ActionScript 3.0 |
Versiones de producto: | OSMF 1.0, OSMF para Flex 4.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The TimeEvent.COMPLETE constant defines the value of the type property of the event object for a complete event.
CURRENT_TIME_CHANGE | Constante |
public static const CURRENT_TIME_CHANGE:String = "currentTimeChange"
Versión del lenguaje: | ActionScript 3.0 |
Versiones de producto: | OSMF 1.0, OSMF para Flex 4.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The TimeEvent.CURRENT_TIME_CHANGE constant defines the value of the type property of the event object for a currentTimeChange event.
DURATION_CHANGE | Constante |
public static const DURATION_CHANGE:String = "durationChange"
Versión del lenguaje: | ActionScript 3.0 |
Versiones de producto: | OSMF 1.0, OSMF para Flex 4.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The TimeEvent.DURATION_CHANGE constant defines the value of the type property of the event object for a durationChange event.
Tue Jun 12 2018, 02:12 PM Z