Pacchetto | org.osmf.containers |
Classe | public class HTMLMediaContainer |
Ereditarietà | HTMLMediaContainer Object |
Implementa | IMediaContainer |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Proprietà pubbliche
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
HTMLMediaContainer(containerIdentifier:String = null)
Constructor. | HTMLMediaContainer | ||
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 | ||
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 |
Descrizione della funzione di costruzione
HTMLMediaContainer | () | Funzione di costruzione |
public function HTMLMediaContainer(containerIdentifier:String = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Constructor.
ParametricontainerIdentifier:String (default = null ) — The identifier that will be used for this container
in JavaScript. If no identifier is specified, a random one will be generated.
|
HTMLMediaContainerExample.as
package { import flash.display.Sprite; import org.osmf.elements.HTMLElement; import org.osmf.media.URLResource; public class HTMLMediaContainerExample extends Sprite { public function HTMLMediaContainerExample() { super(); // This will invoke a JavaScript callback (onHTMLMediaContainerConstructed(container)) // that may be used to add listeners to new elements being added or removed to the // container. var container:HTMLMediaContainer = new HTMLMediaContainer(); var element:HTMLElement = new HTMLElement(); element.resource = new URLResource("http://example.com/an/asset/JS/will/handle.pgn"); // This will invoke a JavaScript callback (container.onElementAdd(element)) that // allows JavaScript to process the passed URL, and to communicate back to the // framework what traits the element will support: container.addMediaElement(element); } } }
Tue Jun 12 2018, 02:44 PM Z