包 | mx.controls.videoClasses |
类 | public class CuePointManager |
继承 | CuePointManager Object |
另请参见
方法 | 定义方 | ||
---|---|---|---|
CuePointManager(owner:VideoPlayer, id:uint = 0) 构造函数。 | CuePointManager | ||
添加提示点。 | CuePointManager | ||
搜索具有指定名称的提示点。 | CuePointManager | ||
返回由所有提示点组成的 Array。 | CuePointManager | ||
指示对象是否已经定义了指定的属性。 | Object | ||
指示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
指示指定的属性是否存在、是否可枚举。 | Object | ||
删除所有提示点。 | CuePointManager | ||
从当前已加载的 FLV 文件中删除提示点。 | CuePointManager | ||
设置提示点数组。 | CuePointManager | ||
设置循环操作动态属性的可用性。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
返回指定对象的原始值。 | Object |
CuePointManager | () | 构造函数 |
public function CuePointManager(owner:VideoPlayer, id:uint = 0)
构造函数。
参数owner:VideoPlayer — 此 CuePointManager 的父类的 VideoPlayer 实例。 | |
id:uint (default = 0 ) — 将忽略此参数;提供它只是为了实现向后兼容性。 |
addCuePoint | () | 方法 |
public function addCuePoint(cuePoint:Object):Object
添加提示点。
可以添加多个具有相同名称和时间的提示点。使用名称和时间选项调用 removeCuePoint()
方法时,该方法将删除第一个匹配的提示点。若要删除所有匹配的提示点,必须再次调用 removeCuePoint()
方法。
参数
cuePoint:Object —
该 Object 描述提示点。它必须包含属性 name:String 和 time:Number (以秒为单位)。如果对象不符合这些约定,将引发 VideoError 错误。
|
Object —
已添加的提示点 Object 的副本。副本具有下列附加属性:
|
VideoError — 如果参数无效。 |
getCuePointByName | () | 方法 |
public function getCuePointByName(name:String):Object
搜索具有指定名称的提示点。
参数
name:String — 提示点的名称。 |
Object —
如果找不到匹配的提示点,或仅找到与提示点 Object 匹配的具有附加属性的副本,则为 null :
|
getCuePoints | () | 方法 |
public function getCuePoints():Array
返回由所有提示点组成的 Array。
返回Array —
提示点对象的 Array。每个提示点对象均可描述提示点,并且包含属性 name:String 和 time:Number (以秒为单位)。
|
removeAllCuePoints | () | 方法 |
public function removeAllCuePoints():void
删除所有提示点。
removeCuePoint | () | 方法 |
public function removeCuePoint(cuePoint:Object):Object
从当前已加载的 FLV 文件中删除提示点。cuePoint
参数仅使用 name
和 time
属性确定要删除的提示点。
如果有多个提示点符合搜索条件,则只删除其中一个。若要删除所有提示点,可在循环中使用相同的参数反复调用此函数,直到它返回 null
为止。
参数
cuePoint:Object —
该 Object 至少必须包含 name:String 和 time:Number 属性中的一个属性,并删除与指定属性相匹配的提示点。
|
Object —
代表已删除的提示点的对象。如果没有匹配的提示点,则它将返回 null 。
|
setCuePoints | () | 方法 |
public function setCuePoints(cuePointArray:Array):void
设置提示点数组。
可以添加多个具有相同名称和时间的提示点。对具有此名称的提示点调用 removeCuePoint()
方法时,将仅删除第一个提示点。
参数
cuePointArray:Array —
提示点对象的 Array。每个提示点对象均可描述提示点。它必须包含属性 name:String 和 time:Number (以秒为单位)。
|