Paquete | org.osmf.traits |
Clase | public class BufferTrait |
Herencia | BufferTrait MediaTraitBase 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 |
Use the MediaElement.hasTrait(MediaTraitType.BUFFER)
method to query
whether a media element has this trait.
If hasTrait(MediaTraitType.BUFFER)
returns true
,
use the MediaElement.getTrait(MediaTraitType.BUFFER)
method
to get an object of this type.
Elementos de API relacionados
Propiedad | Definido por | ||
---|---|---|---|
buffering : Boolean [solo lectura]
Indicates whether the media is currently buffering. | BufferTrait | ||
bufferLength : Number [solo lectura]
The length of the content currently in the media's
buffer in seconds. | BufferTrait | ||
bufferTime : Number
The desired length of the media's buffer in seconds. | BufferTrait | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
traitType : String [solo lectura]
The MediaTraitType for this trait. | MediaTraitBase |
Método | Definido por | ||
---|---|---|---|
Constructor. | BufferTrait | ||
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 | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Disposes of any resources used by this trait. | MediaTraitBase | ||
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 | ||
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étodo | Definido por | ||
---|---|---|---|
Called just after buffering has changed. | BufferTrait | ||
Called immediately before the buffering value is changed. | BufferTrait | ||
Called just after the bufferLength value has changed. | BufferTrait | ||
Called immediately before the bufferLength value is changed. | BufferTrait | ||
Called just after the bufferTime value has changed. | BufferTrait | ||
Called immediately before the bufferTime value is changed. | BufferTrait | ||
Indicates whether the trait is in a buffering state. | BufferTrait | ||
Defines the value of the bufferLength property. | BufferTrait |
Evento | Resumen | Definido por | ||
---|---|---|---|---|
[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos. | EventDispatcher | |||
Dispatched when the trait's buffering property has changed. | BufferTrait | |||
Dispatched when the trait's bufferTime property has changed. | BufferTrait | |||
[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos. | EventDispatcher |
buffering | propiedad |
bufferLength | propiedad |
bufferTime | propiedad |
bufferTime:Number
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 desired length of the media's buffer in seconds.
If the passed value is not numerical or negative, it is forced to zero.
The default is zero.
Implementación
public function get bufferTime():Number
public function set bufferTime(value:Number):void
BufferTrait | () | Información sobre |
public function BufferTrait()
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.
bufferingChangeEnd | () | método |
protected function bufferingChangeEnd():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 |
Called just after buffering
has changed.
Dispatches the change event.
Subclasses that override should call this method to dispatch the bufferingChange event.
bufferingChangeStart | () | método |
protected function bufferingChangeStart(newBuffering:Boolean):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 |
Called immediately before the buffering
value is changed.
Subclasses implement this method to communicate the change to the media.
Parámetros
newBuffering:Boolean — New buffering value.
|
bufferLengthChangeEnd | () | método |
protected function bufferLengthChangeEnd():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 |
Called just after the bufferLength
value has changed.
bufferLengthChangeStart | () | método |
protected function bufferLengthChangeStart(newSize:Number):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 |
Called immediately before the bufferLength
value is changed.
Subclasses implement this method to communicate the change to the media.
Parámetros
newSize:Number — New bufferLength value.
|
bufferTimeChangeEnd | () | método |
protected function bufferTimeChangeEnd():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 |
Called just after the bufferTime
value has changed.
Dispatches the change event.
Subclasses that override should call this method to dispatch the bufferTimeChange event.
bufferTimeChangeStart | () | método |
protected function bufferTimeChangeStart(newTime:Number):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 |
Called immediately before the bufferTime
value is changed.
Subclasses implement this method to communicate the change to the media.
Parámetros
newTime:Number — New bufferTime value.
|
setBuffering | () | método |
protected final function setBuffering(value:Boolean):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 |
Indicates whether the trait is in a buffering state. Dispatches
a bufferingChange event if invocation results in the buffering
property changing.
Parámetros
value:Boolean |
setBufferLength | () | método |
protected final function setBufferLength(value:Number):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 |
Defines the value of the bufferLength property.
This method fires a BufferLengthChangeEvent if the value's change persists.
Parámetros
value:Number |
bufferingChange | Evento |
org.osmf.events.BufferEvent
propiedad BufferEvent.type =
org.osmf.events.BufferEvent.BUFFERING_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 the trait's buffering
property has changed.
bufferTimeChange | Evento |
org.osmf.events.BufferEvent
propiedad BufferEvent.type =
org.osmf.events.BufferEvent.BUFFER_TIME_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 the trait's bufferTime
property has changed.
Tue Jun 12 2018, 02:12 PM Z