Pacote | org.osmf.traits |
Classe | public class BufferTrait |
Herança | BufferTrait MediaTraitBase EventDispatcher Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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 da API relacionados
Propriedade | Definido por | ||
---|---|---|---|
buffering : Boolean [somente leitura]
Indicates whether the media is currently buffering. | BufferTrait | ||
bufferLength : Number [somente leitura]
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
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
traitType : String [somente leitura]
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 um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Disposes of any resources used by this trait. | MediaTraitBase | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | 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 | Resumo | Definido por | ||
---|---|---|---|---|
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
Dispatched when the trait's buffering property has changed. | BufferTrait | |||
Dispatched when the trait's bufferTime property has changed. | BufferTrait | |||
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher |
buffering | propriedade |
bufferLength | propriedade |
bufferTime | propriedade |
bufferTime:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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.
Implementação
public function get bufferTime():Number
public function set bufferTime(value:Number):void
BufferTrait | () | Construtor |
public function BufferTrait()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Constructor.
bufferingChangeEnd | () | método |
protected function bufferingChangeEnd():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Called just after the bufferLength
value has changed.
bufferLengthChangeStart | () | método |
protected function bufferLengthChangeStart(newSize:Number):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | 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
propriedade BufferEvent.type =
org.osmf.events.BufferEvent.BUFFERING_CHANGE
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Dispatched when the trait's buffering
property has changed.
bufferTimeChange | Evento |
org.osmf.events.BufferEvent
propriedade BufferEvent.type =
org.osmf.events.BufferEvent.BUFFER_TIME_CHANGE
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Dispatched when the trait's bufferTime
property has changed.
Wed Jun 13 2018, 11:10 AM Z