Pacchetto | org.osmf.traits |
Classe | public class SeekTrait |
Ereditarietà | SeekTrait MediaTraitBase EventDispatcher Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Elementi API correlati
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
seeking : Boolean [sola lettura]
Indicates whether the media is currently seeking. | SeekTrait | ||
traitType : String [sola lettura]
The MediaTraitType for this trait. | MediaTraitBase |
Proprietà | Definito da | ||
---|---|---|---|
timeTrait : org.osmf.traits:TimeTrait
The TimeTrait used by this SeekTrait. | SeekTrait |
Metodo | Definito da | ||
---|---|---|---|
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 oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | EventDispatcher | ||
Indicates whether the media is capable of seeking to the
specified time. | SeekTrait | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Disposes of any resources used by this trait. | MediaTraitBase | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | EventDispatcher | ||
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 | ||
Rimuove un listener dall'oggetto EventDispatcher. | EventDispatcher | ||
Instructs the media to jump to the specified time. | SeekTrait | ||
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 | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | EventDispatcher |
Metodo | Definito da | ||
---|---|---|---|
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 | Riepilogo | Definito da | ||
---|---|---|---|---|
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR ottiene lo stato di attivazione del sistema operativo ed entra nello stato attivo. | EventDispatcher | |||
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR perde l'attivazione del sistema operativo e sta entrando nello stato inattivo. | EventDispatcher | |||
Dispatched when this trait begins or ends a seek operation. | SeekTrait |
seeking | proprietà |
timeTrait | proprietà |
timeTrait:org.osmf.traits:TimeTrait
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
The TimeTrait used by this SeekTrait.
Implementazione
protected function get timeTrait():org.osmf.traits:TimeTrait
protected function set timeTrait(value:org.osmf.traits:TimeTrait):void
SeekTrait | () | Funzione di costruzione |
public function SeekTrait(timeTrait:org.osmf.traits:TimeTrait)
Constructor.
ParametritimeTrait:org.osmf.traits:TimeTrait |
canSeekTo | () | metodo |
public function canSeekTo(time:Number):Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Indicates whether the media is capable of seeking to the specified time.
Parametri
time:Number — Time to seek to in seconds.
|
Boolean — Returns true if the media can seek to the specified time.
|
seek | () | metodo |
public final function seek(time:Number):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Parametri
time:Number — Time to seek to in seconds.
|
seekingChangeEnd | () | metodo |
protected function seekingChangeEnd(time:Number):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Parametri
time:Number — New time value representing the time that the playhead seeked to.
|
seekingChangeStart | () | metodo |
protected function seekingChangeStart(newSeeking:Boolean, time:Number):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Parametri
newSeeking:Boolean — New time value representing the time that the playhead seeks to.
| |
time:Number |
setSeeking | () | metodo |
protected final function setSeeking(value:Boolean, time:Number):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Must be called by the implementing media on completing a seek.
Calls the seekingChangeStart()
and seekingChangeEnd()
methods.
Parametri
value:Boolean — New seeking value.
| |
time:Number — Position in seconds that the playhead was ultimately
moved to.
|
seekingChange | Evento |
org.osmf.events.SeekEvent
proprietà SeekEvent.type =
org.osmf.events.SeekEvent.SEEKING_CHANGE
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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:44 PM Z