Pakket | org.osmf.traits |
Klasse | public class TimeTrait |
Overerving | TimeTrait MediaTraitBase EventDispatcher Object |
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Use the MediaElement.hasTrait(MediaTraitType.TIME)
method to query
whether a media element has a trait of this type.
If hasTrait(MediaTraitType.TIME)
returns true
,
use the MediaElement.getTrait(MediaTraitType.TIME)
method
to get an object that is of this type.
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
currentTime : Number [alleen-lezen]
The current time of the media, in seconds. | TimeTrait | ||
duration : Number [alleen-lezen]
The duration of the media, in seconds. | TimeTrait | ||
traitType : String [alleen-lezen]
The MediaTraitType for this trait. | MediaTraitBase |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | TimeTrait | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | EventDispatcher | ||
Verzendt een gebeurtenis naar de gebeurtenisstroom. | EventDispatcher | ||
Disposes of any resources used by this trait. | MediaTraitBase | ||
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | EventDispatcher | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Verwijdert een listener uit het object EventDispatcher. | EventDispatcher | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object | ||
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | EventDispatcher |
Methode | Gedefinieerd door | ||
---|---|---|---|
Called just after the currentTime property has changed. | TimeTrait | ||
Called immediately before the currentTime property is changed. | TimeTrait | ||
Called just after the duration property has changed. | TimeTrait | ||
Called immediately before the duration property is changed. | TimeTrait | ||
Invoking this setter will result in the trait's currentTime
value changing if it differs from currentTime's current value. | TimeTrait | ||
Invoking this setter will result in the trait's duration
value changing if it differs from duration's current value. | TimeTrait |
Gebeurtenis | Overzicht | Gedefinieerd door | ||
---|---|---|---|---|
[uitgezonden gebeurtenis] Wordt verzonden wanneer Flash Player of de AIR-toepassing de besturingssysteemfocus krijgt en actief wordt. | EventDispatcher | |||
Dispatched when the currentTime of the trait has changed to a value equal to its duration. | TimeTrait | |||
[uitgezonden gebeurtenis] Wordt verzonden wanneer Flash Player of de AIR-toepassing de systeemfocus verliest en inactief wordt. | EventDispatcher | |||
Dispatched when the duration of the trait changed. | TimeTrait |
currentTime | eigenschap |
duration | eigenschap |
TimeTrait | () | Constructor |
currentTimeChangeEnd | () | methode |
currentTimeChangeStart | () | methode |
protected function currentTimeChangeStart(newCurrentTime:Number):void
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Called immediately before the currentTime
property is changed.
Subclasses can override this method to communicate the change to the media.
Parameters
newCurrentTime:Number — New currentTime value.
|
durationChangeEnd | () | methode |
protected function durationChangeEnd(oldDuration:Number):void
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Called just after the duration
property has changed.
Dispatches the change event.
Subclasses that override should call this method to dispatch the durationChange event.
Parameters
oldDuration:Number — Previous duration value.
|
durationChangeStart | () | methode |
protected function durationChangeStart(newDuration:Number):void
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Called immediately before the duration
property is changed.
Subclasses can override this method to communicate the change to the media.
Parameters
newDuration:Number — New duration value.
|
setCurrentTime | () | methode |
setDuration | () | methode |
complete | Gebeurtenis |
org.osmf.events.TimeEvent
eigenschap TimeEvent.type =
org.osmf.events.TimeEvent.COMPLETE
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Dispatched when the currentTime of the trait has changed to a value equal to its duration.
The TimeEvent.COMPLETE constant defines the value of the type property of the event object for a complete event.durationChange | Gebeurtenis |
org.osmf.events.TimeEvent
eigenschap TimeEvent.type =
org.osmf.events.TimeEvent.DURATION_CHANGE
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Dispatched when the duration of the trait changed.
The TimeEvent.DURATION_CHANGE constant defines the value of the type property of the event object for a durationChange event.Wed Jun 13 2018, 11:42 AM Z