Pacchetto | org.osmf.metadata |
Classe | public class Metadata |
Ereditarietà | Metadata EventDispatcher Object |
Sottoclassi | LayoutMetadata, TimelineMetadata |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
keys : Vector.<String> [sola lettura]
The keys stored in this Metadata object. | Metadata |
Metodo | Definito da | ||
---|---|---|---|
Metadata()
Constructor. | Metadata | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | EventDispatcher | ||
Stores the specified value in this Metadata object, using the specified
key. | Metadata | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Returns the value associate with the specified key. | Metadata | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | EventDispatcher | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Rimuove un listener dall'oggetto EventDispatcher. | EventDispatcher | ||
Removes the value associated with the specified key from this
Metadata object. | Metadata | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | EventDispatcher |
Evento | Riepilogo | Definito da | ||
---|---|---|---|---|
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR ottiene lo stato di attivazione del sistema operativo ed entra nello stato attivo. | EventDispatcher | |||
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR perde l'attivazione del sistema operativo e sta entrando nello stato inattivo. | 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 | proprietà |
Metadata | () | Funzione di costruzione |
public function Metadata()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Constructor.
addValue | () | metodo |
public function addValue(key:String, value:Object):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Parametri
key:String — The key to associate the value with.
| |
value:Object — The value to add to the Metadata object.
|
Genera
ArgumentError — If key is null or somehow invalid.
|
getValue | () | metodo |
public function getValue(key:String):*
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Parametri
key:String |
* |
Genera
ArgumentError — If key is null.
|
removeValue | () | metodo |
public function removeValue(key:String):*
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Parametri
key:String — The key associated with the value to be removed.
|
* |
Genera
ArgumentError — If key is null.
|
valueAdd | Evento |
org.osmf.events.MetadataEvent
proprietà MetadataEvent.type =
org.osmf.events.MetadataEvent.VALUE_ADD
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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
proprietà MetadataEvent.type =
org.osmf.events.MetadataEvent.VALUE_CHANGE
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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
proprietà MetadataEvent.type =
org.osmf.events.MetadataEvent.VALUE_REMOVE
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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:44 PM Z