Paquete | org.osmf.traits |
Clase | public class SeekTrait |
Herencia | SeekTrait 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.SEEK)
method to query
whether a media element has a trait of this type.
If hasTrait(MediaTraitType.SEEK)
returns true
,
use the MediaElement.getTrait(MediaTraitType.SEEK)
method
to get an object that is guaranteed to be of this type.
Elementos de API relacionados
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
seeking : Boolean [solo lectura]
Indicates whether the media is currently seeking. | SeekTrait | ||
traitType : String [solo lectura]
The MediaTraitType for this trait. | MediaTraitBase |
Propiedad | Definido por | ||
---|---|---|---|
timeTrait : org.osmf.traits:TimeTrait
The TimeTrait used by this SeekTrait. | SeekTrait |
Método | Definido por | ||
---|---|---|---|
SeekTrait(timeTrait:org.osmf.traits:TimeTrait)
Constructor. | SeekTrait | ||
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 | ||
Indicates whether the media is capable of seeking to the
specified time. | SeekTrait | ||
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 | ||
Instructs the media to jump to the specified time. | SeekTrait | ||
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 the seeking property has changed. | SeekTrait | ||
Called immediately before the seeking property is changed. | SeekTrait | ||
Must be called by the implementing media on completing a seek. | SeekTrait |
Evento | Resumen | Definido por | ||
---|---|---|---|---|
[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos. | EventDispatcher | |||
[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos. | EventDispatcher | |||
Dispatched when this trait begins or ends a seek operation. | SeekTrait |
seeking | propiedad |
timeTrait | propiedad |
timeTrait:org.osmf.traits:TimeTrait
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 TimeTrait used by this SeekTrait.
Implementación
protected function get timeTrait():org.osmf.traits:TimeTrait
protected function set timeTrait(value:org.osmf.traits:TimeTrait):void
SeekTrait | () | Información sobre |
public function SeekTrait(timeTrait:org.osmf.traits:TimeTrait)
Constructor.
ParámetrostimeTrait:org.osmf.traits:TimeTrait |
canSeekTo | () | método |
public function canSeekTo(time:Number):Boolean
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 media is capable of seeking to the specified time.
Parámetros
time:Number — Time to seek to in seconds.
|
Boolean — Returns true if the media can seek to the specified time.
|
seek | () | método |
public final function seek(time: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 |
Instructs the media to jump to the specified time
.
If a seek is attempted, dispatches a seekingChange event.
If time
is non numerical or negative, does not attempt to seek.
Parámetros
time:Number — Time to seek to in seconds.
|
seekingChangeEnd | () | método |
protected function seekingChangeEnd(time: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 just after the seeking
property has changed.
Dispatches the change event.
Subclasses that override should call this method to dispatch the change event.
Parámetros
time:Number — New time value representing the time that the playhead seeked to.
|
seekingChangeStart | () | método |
protected function seekingChangeStart(newSeeking:Boolean, time: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 seeking
property is changed.
Subclasses can override this method to communicate the change to the media.
Parámetros
newSeeking:Boolean — New time value representing the time that the playhead seeks to.
| |
time:Number |
setSeeking | () | método |
protected final function setSeeking(value:Boolean, time: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 |
Must be called by the implementing media on completing a seek.
Calls the seekingChangeStart()
and seekingChangeEnd()
methods.
Parámetros
value:Boolean — New seeking value.
| |
time:Number — Position in seconds that the playhead was ultimately
moved to.
|
seekingChange | Evento |
org.osmf.events.SeekEvent
propiedad SeekEvent.type =
org.osmf.events.SeekEvent.SEEKING_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 this trait begins or ends a seek operation.
The SeekEvent.SEEKING_CHANGE constant defines the value of the type property of the event object for a seekingChange event.Tue Jun 12 2018, 02:12 PM Z