Paket | org.osmf.traits |
Sınıf | public class TimeTrait |
Miras Alma | TimeTrait MediaTraitBase EventDispatcher Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | 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.
İlgili API Öğeleri
Özellik | Tanımlayan: | ||
---|---|---|---|
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
currentTime : Number [salt okunur]
The current time of the media, in seconds. | TimeTrait | ||
duration : Number [salt okunur]
The duration of the media, in seconds. | TimeTrait | ||
traitType : String [salt okunur]
The MediaTraitType for this trait. | MediaTraitBase |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | TimeTrait | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
EventDispatcher nesnesi olan bir olay dinleyici nesnesini, dinleyicinin bir olayın bildirimini alması için kaydeder. | EventDispatcher | ||
Olay akışına bir olay gönderir. | EventDispatcher | ||
Disposes of any resources used by this trait. | MediaTraitBase | ||
EventDispatcher nesnesinin belirli bir olay türü için kayıtlı dinleyicisi olup olmadığını kontrol eder. | EventDispatcher | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
EventDispatcher nesnesinden bir dinleyiciyi kaldırır. | EventDispatcher | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object | ||
Bir olay dinleyicisinin bu EventDispatcher nesnesiyle mi, yoksa onun belirtilen olay türüne yönelik üst öğelerinden biriyle mi kayıtlı olduğunu kontrol eder. | EventDispatcher |
Yöntem | Tanımlayan: | ||
---|---|---|---|
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 |
Olay | Özet | Tanımlayan: | ||
---|---|---|---|---|
[broadcast olayı] Flash Player veya AIR uygulaması işletim sistemi odağına gelip etkin olduğunda gönderilir. | EventDispatcher | |||
Dispatched when the currentTime of the trait has changed to a value equal to its duration. | TimeTrait | |||
[broadcast olayı] Çalışan Flash Player veya AIR uygulaması sistem odağını kaybettiğinde ve etkin olmayan duruma geldiğinde gönderilir. | EventDispatcher | |||
Dispatched when the duration of the trait changed. | TimeTrait |
currentTime | özellik |
duration | özellik |
TimeTrait | () | Yapıcı |
currentTimeChangeEnd | () | yöntem |
currentTimeChangeStart | () | yöntem |
protected function currentTimeChangeStart(newCurrentTime:Number):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
newCurrentTime:Number — New currentTime value.
|
durationChangeEnd | () | yöntem |
protected function durationChangeEnd(oldDuration:Number):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
oldDuration:Number — Previous duration value.
|
durationChangeStart | () | yöntem |
protected function durationChangeStart(newDuration:Number):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
newDuration:Number — New duration value.
|
setCurrentTime | () | yöntem |
protected final function setCurrentTime(value:Number):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Invoking this setter will result in the trait's currentTime value changing if it differs from currentTime's current value.
Parametreler
value:Number |
setDuration | () | yöntem |
complete | Olay |
org.osmf.events.TimeEvent
özellik TimeEvent.type =
org.osmf.events.TimeEvent.COMPLETE
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | 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 | Olay |
org.osmf.events.TimeEvent
özellik TimeEvent.type =
org.osmf.events.TimeEvent.DURATION_CHANGE
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 1.0 |
Çalışma Zamanı Sürümleri: | 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.Tue Jun 12 2018, 01:09 PM Z