Paket | mx.controls.videoClasses |
Sınıf | public class CuePointManager |
Miras Alma | CuePointManager Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
İlgili API Öğeleri
Yöntem | Tanımlayan: | ||
---|---|---|---|
CuePointManager(owner:VideoPlayer, id:uint = 0)
Constructor. | CuePointManager | ||
Adds a cue point. | CuePointManager | ||
Search for a cue point with specified name. | CuePointManager | ||
Returns an Array of all cue points. | CuePointManager | ||
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 | ||
Removes all cue points. | CuePointManager | ||
Removes a cue point from the currently
loaded FLV file. | CuePointManager | ||
Set the array of cue points. | CuePointManager | ||
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 |
CuePointManager | () | Yapıcı |
public function CuePointManager(owner:VideoPlayer, id:uint = 0)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor.
Parametrelerowner:VideoPlayer — The VideoPlayer instance that is the parent of this CuePointManager.
| |
id:uint (default = 0 ) — This parameter is ignored; it is provided only for backwards compatibility.
|
addCuePoint | () | yöntem |
public function addCuePoint(cuePoint:Object):Object
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Adds a cue point.
You can add multiple cue points with the same
name and time. When you call the removeCuePoint()
method
with the name and time, it removes the first matching cue point.
To remove all matching cue points, you have to make additional calls to
the removeCuePoint()
method.
Parametreler
cuePoint:Object — The Object describes the cue
point. It must contain the properties name:String
and time:Number (in seconds).
If the Object does not conform to these
conventions, it throws a VideoError error.
|
Object — A copy of the cue point Object added. The copy has the
following additional properties:
|
Atar
VideoError — If the arguments are invalid.
|
getCuePointByName | () | yöntem |
public function getCuePointByName(name:String):Object
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Search for a cue point with specified name.
Parametreler
name:String — The name of the cue point.
|
Object — null if no match was found, or
a copy of the matching cue point Object with additional properties:
|
getCuePoints | () | yöntem |
public function getCuePoints():Array
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns an Array of all cue points.
DöndürürArray — An Array of cue point objects.
Each cue point object describes the cue
point, and contains the properties name:String
and time:Number (in seconds).
|
removeAllCuePoints | () | yöntem |
public function removeAllCuePoints():void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Removes all cue points.
removeCuePoint | () | yöntem |
public function removeCuePoint(cuePoint:Object):Object
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Removes a cue point from the currently
loaded FLV file. Only the name
and time
properties are used from the cuePoint
argument to
determine the cue point to be removed.
If multiple cue points match the search criteria, only
one will be removed. To remove all cue points, call this function
repeatedly in a loop with the same arguments until it returns
null
.
Parametreler
cuePoint:Object — The Object must contain at least one of
name:String and time:Number properties, and
removes the cue point that matches the specified properties.
|
Object — An object representing the cue point removed. If there was no
matching cue point, then it returns null .
|
setCuePoints | () | yöntem |
public function setCuePoints(cuePointArray:Array):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Set the array of cue points.
You can add multiple cue points with the same
name and time. When you call the removeCuePoint()
method
with this name, only the first one is removed.
Parametreler
cuePointArray:Array — An Array of cue point objects.
Each cue point object describes the cue
point. It must contain the properties name:String
and time:Number (in seconds).
|
Tue Jun 12 2018, 01:09 PM Z