Paquete | org.osmf.elements |
Clase | public class F4MElement |
Herencia | F4MElement LoadFromDocumentElement ProxyElement MediaElement EventDispatcher 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 |
The basic steps for creating and using an F4MElement are:
- Create a new URLResource pointing to the URL of the F4M file.
- Create the new F4MElement, passing the URLResource as a parameter.
- Create a new MediaPlayer.
- Assign the F4MElement to the MediaPlayer's
media
property. - Control the media using the MediaPlayer's methods, properties, and events.
- When done with the F4MElement, set the MediaPlayer's
media
property to null. This will unload the F4MElement.
Note: It is simplest to use the MediaPlayer class in conjunction with the F4MElement. If you work directly with an F4MElement, then it's important to listen for events related to traits being added and removed. If you use the MediaPlayer class with an F4MElement, then the MediaPlayer will automatically listen for these events for you.
Más información
Elementos de API relacionados
Propiedades públicas
Propiedades protegidas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Constructor. | F4MElement | ||
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 | ||
Adds a Metadata object to this MediaElement under the specified namespace URL. | MediaElement | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Returns the Metadata object that is stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
Returns the media trait of the specified type. | MediaElement | ||
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 | ||
Determines whether this media element has a media trait of the
specified type. | MediaElement | ||
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 Metadata object that was stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
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 |
Métodos protegidos
Eventos
Información sobre constructores
F4MElement | () | Información sobre |
public function F4MElement(resource:MediaResourceBase = null, loader:F4MLoader = 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ámetrosresource:MediaResourceBase (default = null ) — MediaResourceBase that points to the F4M file that this
F4MElement will use.
| |
loader:F4MLoader (default = null ) — F4MLoader used to load the F4M file. If null, an
F4MLoader will be created by the F4MElement.
|
Ejemplos Cómo utilizar este ejemplo
F4MElementExample.as
package { import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import org.osmf.elements.F4MElement; import org.osmf.elements.VideoElement; import org.osmf.media.MediaPlayer; import org.osmf.media.MediaPlayerSprite; import org.osmf.media.URLResource; public class F4MElementExample extends Sprite { public function F4MElementExample() { super(); stage.scaleMode = StageScaleMode.NO_SCALE; stage.align = StageAlign.TOP_LEFT; var mediaPlayerSprite:MediaPlayerSprite = new MediaPlayerSprite(); var manifestElement:F4MElement = new F4MElement(); manifestElement.resource = new URLResource("http://mediapm.edgesuite.net/osmf/content/test/manifest-files/progressive.f4m"); addChild(mediaPlayerSprite); mediaPlayerSprite.media = manifestElement; } } }
Tue Jun 12 2018, 02:12 PM Z