包 | mx.controls.videoClasses |
类 | public class CuePointManager |
继承 | CuePointManager Object |
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
相关 API 元素
公共方法
方法 | 由以下参数定义 | ||
---|---|---|---|
CuePointManager(owner:VideoPlayer, id:uint = 0)
构造函数。 | CuePointManager | ||
添加提示点。 | CuePointManager | ||
搜索具有指定名称的提示点。 | CuePointManager | ||
返回由所有提示点组成的 Array。 | CuePointManager | ||
表示对象是否已经定义了指定的属性。 | Object | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
删除所有提示点。 | CuePointManager | ||
从当前已加载的 FLV 文件中删除提示点。 | CuePointManager | ||
设置提示点数组。 | CuePointManager | ||
设置循环操作动态属性的可用性。 | Object | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
返回指定对象的原始值。 | Object |
构造函数详细信息
CuePointManager | () | 构造函数 |
方法详细信息
addCuePoint | () | 方法 |
public function addCuePoint(cuePoint:Object):Object
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
添加提示点。
可以添加多个具有相同名称和时间的提示点。使用名称和时间选项调用 removeCuePoint()
方法时,该方法将删除第一个匹配的提示点。若要删除所有匹配的提示点,必须再次调用 removeCuePoint()
方法。
参数
cuePoint:Object — 该 Object 描述提示点。它必须包含属性 name:String 和 time:Number (以秒为单位)。如果对象不符合这些约定,将引发 VideoError 错误。
|
Object — 已添加的提示点 Object 的副本。副本具有下列附加属性:
|
引发
VideoError — 如果参数无效。
|
getCuePointByName | () | 方法 |
public function getCuePointByName(name:String):Object
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
搜索具有指定名称的提示点。
参数
name:String — 提示点的名称。
|
Object — 如果找不到匹配的提示点,或仅找到与提示点 Object 匹配的具有附加属性的副本,则为 null :
|
getCuePoints | () | 方法 |
removeAllCuePoints | () | 方法 |
public function removeAllCuePoints():void
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
删除所有提示点。
removeCuePoint | () | 方法 |
public function removeCuePoint(cuePoint:Object):Object
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
从当前已加载的 FLV 文件中删除提示点。cuePoint
参数仅使用 name
和 time
属性确定要删除的提示点。
如果有多个提示点符合搜索条件,则只删除其中一个。若要删除所有提示点,可在循环中使用相同的参数反复调用此函数,直到它返回 null
为止。
参数
cuePoint:Object — 该 Object 至少必须包含 name:String 和 time:Number 属性中的一个属性,并删除与指定属性相匹配的提示点。
|
Object — 代表已删除的提示点的对象。如果没有匹配的提示点,则它将返回 null 。
|
setCuePoints | () | 方法 |
Tue Jun 12 2018, 11:04 AM Z