Paquete | org.osmf.events |
Clase | public class MediaElementEvent |
Herencia | MediaElementEvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.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 | ||
metadata : Metadata [solo lectura]
The Metadata that was added or removed. | MediaElementEvent | ||
namespaceURL : String [solo lectura]
The namespace URL for the Metadata that was added or removed. | MediaElementEvent | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
traitType : String [solo lectura]
The MediaTraitType for the trait that was added or removed. | MediaElementEvent | ||
type : String [solo lectura]
El tipo de evento. | Event |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
MediaElementEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, traitType:String = null, namespaceURL:String = null, metadata:Metadata = null)
Constructor. | MediaElementEvent | ||
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 | ||
---|---|---|---|
METADATA_ADD : String = "metadataAdd" [estática]
The MediaElementEvent.METADATA_ADD constant defines the value of the type
property of the event object for a metadataAdd event. | MediaElementEvent | ||
METADATA_REMOVE : String = "metadataRemove" [estática]
The MediaElementEvent.METADATA_REMOVE constant defines the value of the
type property of the event object for a metadataRemove event. | MediaElementEvent | ||
TRAIT_ADD : String = "traitAdd" [estática]
The MediaElementEvent.TRAIT_ADD constant defines the value of the type
property of the event object for a traitAdd event. | MediaElementEvent | ||
TRAIT_REMOVE : String = "traitRemove" [estática]
The MediaElementEvent.TRAIT_REMOVE constant defines the value of the
type property of the event object for a traitRemove event. | MediaElementEvent |
Información sobre propiedades
metadata | propiedad |
namespaceURL | propiedad |
traitType | propiedad |
traitType:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The MediaTraitType for the trait that was added or removed. Null if type is not TRAIT_ADD or TRAIT_REMOVE.
Implementación
public function get traitType():String
Información sobre constructores
MediaElementEvent | () | Información sobre |
public function MediaElementEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, traitType:String = null, namespaceURL:String = null, metadata:Metadata = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Constructor.
Parámetrostype:String — Event type
| |
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.
| |
traitType:String (default = null ) — The MediaTraitType for the trait that was added or removed. Null
if type is not TRAIT_ADD or TRAIT_REMOVE.
| |
namespaceURL:String (default = null ) — The namespace URL of the Metadata that was added or removed.
Null if type is not METADATA_ADD or METADATA_REMOVE.
| |
metadata:Metadata (default = null ) — The Metadata that was added or removed. Null if type is not
METADATA_ADD or METADATA_REMOVE.
|
Información sobre constantes
METADATA_ADD | Constante |
public static const METADATA_ADD:String = "metadataAdd"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The MediaElementEvent.METADATA_ADD constant defines the value of the type property of the event object for a metadataAdd event.
METADATA_REMOVE | Constante |
public static const METADATA_REMOVE:String = "metadataRemove"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The MediaElementEvent.METADATA_REMOVE constant defines the value of the type property of the event object for a metadataRemove event.
TRAIT_ADD | Constante |
public static const TRAIT_ADD:String = "traitAdd"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The MediaElementEvent.TRAIT_ADD constant defines the value of the type property of the event object for a traitAdd event.
TRAIT_REMOVE | Constante |
public static const TRAIT_REMOVE:String = "traitRemove"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
The MediaElementEvent.TRAIT_REMOVE constant defines the value of the type property of the event object for a traitRemove event.
Tue Jun 12 2018, 02:12 PM Z