Paket | org.osmf.elements |
Sınıf | public class DurationElement |
Miras Alma | DurationElement ProxyElement MediaElement 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 |
The DurationElement class is especially useful for creating delays in the presentation of a media composition. For example, the following code presents a sequence of videos, separated from each other by five-second delays.
var sequence:SerialElement = new SerialElement(); sequence.addChild(new VideoElement(new URLResource("http://www.example.com/video1.flv"))); sequence.addChild(new DurationElement(5)); sequence.addChild(new VideoElement(new URLResource("http://www.example.com/ad.flv"))); sequence.addChild(new DurationElement(5)); sequence.addChild(new VideoElement(new URLResource("http://www.example.com/video2.flv"))); // Assign the SerialElement to the MediaPlayer. player.media = sequence;
The following example presents a sequence of rotating banners. The delays separating the appearances of the banners are created with DurationElements. In addition, the images themselves are wrapped in DurationElements to enable them to support a duration.
// The first banner does not appear for five seconds. // Each banner is shown for 20 seconds. // There is a 15-second delay between images. var bannerSequence:SerialElement = new SerialElement(); bannerSequence.addChild(new DurationElement(5)); bannerSequence.addChild(new DurationElement(20,new ImageElement(new URLResource("http://www.example.com/banner1.jpg"))); bannerSequence.addChild(new DurationElement(15)); bannerSequence.addChild(new DurationElement(20,new ImageElement(new URLResource("http://www.example.com/banner2.jpg"))); bannerSequence.addChild(new DurationElement(15)); bannerSequence.addChild(new DurationElement(20,new ImageElement(new URLResource("http://www.example.com/banner3.jpg")));
clipStartTime
and clipEndTime
properties.
İlgili API Öğeleri
Korunan Özellikler
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | DurationElement | ||
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 | ||
Adds a Metadata object to this MediaElement under the specified namespace URL. | MediaElement | ||
Olay akışına bir olay gönderir. | EventDispatcher | ||
Returns the Metadata object that is stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
Returns the media trait of the specified type. | MediaElement | ||
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 | ||
Determines whether this media element has a media trait of the
specified type. | MediaElement | ||
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 | ||
Removes the Metadata object that was stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
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 |
Korunan Yöntemler
Olaylar
Yapıcı Ayrıntı
DurationElement | () | Yapıcı |
public function DurationElement(duration:Number, mediaElement:MediaElement = null)
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 |
Constructor.
Parametrelerduration:Number — Duration of the DurationElement's TimeTrait, in seconds.
| |
mediaElement:MediaElement (default = null ) — Optional element to be wrapped by this DurationElement.
|
Örnekler Bu örnek nasıl kullanılır?
DurationElementExample.as
package { import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import org.osmf.elements.BeaconElement; import org.osmf.elements.DurationElement; import org.osmf.elements.ImageElement; import org.osmf.elements.VideoElement; import org.osmf.media.MediaPlayer; import org.osmf.media.MediaPlayerSprite; import org.osmf.media.URLResource; public class DurationElementExample extends Sprite { public function DurationElementExample() { super(); stage.scaleMode = StageScaleMode.NO_SCALE; stage.align = StageAlign.TOP_LEFT; var mediaPlayerSprite:MediaPlayerSprite = new MediaPlayerSprite(); var imageElement:ImageElement = new ImageElement(); imageElement.resource = new URLResource("http://mediapm.edgesuite.net/strobe/content/test/train.jpg"); // Shows the image for 10 seconds. var durationElement:DurationElement = new DurationElement(10, imageElement); addChild(mediaPlayerSprite); mediaPlayerSprite.media = durationElement; } } }
Tue Jun 12 2018, 01:09 PM Z