Paquete | org.osmf.metadata |
Clase | public class Metadata |
Herencia | Metadata EventDispatcher Object |
Subclases | LayoutMetadata, TimelineMetadata |
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 |
Metadata consists of key-value pairs, where keys are Strings and values are arbitrary Objects. The Metadata class provides a strongly-typed API for working with these key-value pairs, as well as events for detecting changes to the metadata.
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
keys : Vector.<String> [solo lectura]
The keys stored in this Metadata object. | Metadata |
Método | Definido por | ||
---|---|---|---|
Metadata()
Constructor. | Metadata | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento. | EventDispatcher | ||
Stores the specified value in this Metadata object, using the specified
key. | Metadata | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Returns the value associate with the specified key. | Metadata | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | EventDispatcher | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Elimina un detector del objeto EventDispatcher. | EventDispatcher | ||
Removes the value associated with the specified key from this
Metadata object. | Metadata | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | EventDispatcher |
Evento | Resumen | Definido por | ||
---|---|---|---|---|
[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos. | EventDispatcher | |||
[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos. | EventDispatcher | |||
Dispatched when a new value is added to the Metadata object. | Metadata | |||
Dispatched when a value within the Metadata object changes. | Metadata | |||
Dispatched when a value is removed from the Metadata object. | Metadata |
keys | propiedad |
Metadata | () | Información sobre |
public function Metadata()
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.
addValue | () | método |
public function addValue(key:String, value:Object):void
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 |
Stores the specified value in this Metadata object, using the specified key. The key can subsequently be used to retrieve the value. If the key is equal to the key of another object already in the Metadata object this will overwrite the association with the new value.
Parámetros
key:String — The key to associate the value with.
| |
value:Object — The value to add to the Metadata object.
|
Emite
ArgumentError — If key is null or somehow invalid.
|
getValue | () | método |
public function getValue(key:String):*
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 |
Returns the value associate with the specified key. Returns 'undefined' if the Metadata object fails to resolve the key.
Parámetros
key:String |
* |
Emite
ArgumentError — If key is null.
|
removeValue | () | método |
public function removeValue(key:String):*
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 |
Removes the value associated with the specified key from this Metadata object. Returns undefined if there is no value associated with the key in this Metadata object.
Parámetros
key:String — The key associated with the value to be removed.
|
* |
Emite
ArgumentError — If key is null.
|
valueAdd | Evento |
org.osmf.events.MetadataEvent
propiedad MetadataEvent.type =
org.osmf.events.MetadataEvent.VALUE_ADD
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 |
Dispatched when a new value is added to the Metadata object.
The MetadataEvent.VALUE_ADD constant defines the value of the type property of the event object for a valueAdd event.valueChange | Evento |
org.osmf.events.MetadataEvent
propiedad MetadataEvent.type =
org.osmf.events.MetadataEvent.VALUE_CHANGE
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 |
Dispatched when a value within the Metadata object changes.
The MetadataEvent.VALUE_CHANGE constant defines the value of the type property of the event object for a valueChange event.valueRemove | Evento |
org.osmf.events.MetadataEvent
propiedad MetadataEvent.type =
org.osmf.events.MetadataEvent.VALUE_REMOVE
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 |
Dispatched when a value is removed from the Metadata object.
The MetadataEvent.VALUE_REMOVE constant defines the value of the type property of the event object for a valueRemove event.Tue Jun 12 2018, 02:12 PM Z