mx.effects.effectClasses
public class CompositeEffectInstance
继承CompositeEffectInstance Inheritance EffectInstance Inheritance EventDispatcher Inheritance Object
子类 ParallelInstance, SequenceInstance

CompositeEffectInstance 类用于实现 CompositeEffect 类的实例类。Flex 在播放 CompositeEffect 时会自动创建此类的实例;您无需自己创建。

另请参见

mx.effects.CompositeEffect


公共属性
 属性定义方
 InheritedclassName : String
[只读 (read-only)] 效果类的名称,如“FadeInstance”。
EffectInstance
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
 Inheritedduration : Number
效果的持续时间(以毫秒为单位)。
EffectInstance
 Inheritedeffect : IEffect
创建此 IEffectInstance 对象的 IEffect 对象。
EffectInstance
 InheritedeffectTargetHost : IEffectTargetHost
一个属性,您可以通过设置此属性访问数据效果基于列表的目标控件。
EffectInstance
 InheritedhideFocusRing : Boolean
确定在开始播放效果时,效果是否应隐藏对焦环。
EffectInstance
 InheritedplayheadTime : Number
[只读 (read-only)] 播放效果时所处的当前位置。
EffectInstance
 InheritedpropertyChanges : PropertyChanges
指定包含一组属性的初始值和结束值的 PropertyChanges 对象,这些属性与效果的目标相关。
EffectInstance
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
 InheritedrepeatCount : int
效果的重复次数。
EffectInstance
 InheritedrepeatDelay : int
重复播放效果前需要等待的时间(以毫秒为单位)。
EffectInstance
 InheritedstartDelay : int
开始播放效果前需要等待的时间(以毫秒为单位)。
EffectInstance
 InheritedsuspendBackgroundProcessing : Boolean
如果为 true,则在播放效果时阻止所有背景处理。
EffectInstance
 Inheritedtarget : Object
要应用此效果的 UIComponent 对象。
EffectInstance
 InheritedtriggerEvent : Event
触发播放效果的事件(如果有)。
EffectInstance
公共方法
 方法定义方
  
构造函数。
CompositeEffectInstance
  
向此 Composite 效果添加一组新的子效果。
CompositeEffectInstance
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。
EventDispatcher
 Inherited
将事件调度到事件流中。
EventDispatcher
 Inherited
中断当前播放的效果实例,立即跳转到效果的结束位置。
EffectInstance
 Inherited
在完成效果播放时由 end() 方法调用。
EffectInstance
 Inherited
每次完成重复效果的迭代播放后调用。
EffectInstance
 Inherited
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。
EventDispatcher
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
如果由 EffectManager 触发效果,则会调用此方法。
EffectInstance
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
暂停效果,直到调用 resume() 方法。
EffectInstance
 Inherited
在目标上播放效果实例。
EffectInstance
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
从 EventDispatcher 对象中删除侦听器。
EventDispatcher
 Inherited
在效果由 pause() 方法暂停后继续播放效果。
EffectInstance
 Inherited
从效果的当前位置开始反向播放效果。
EffectInstance
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
经过 startDelay 所占用的这段时间后,在目标上播放效果实例。
EffectInstance
 Inherited
停止播放效果,使目标保持当前状态。
EffectInstance
 Inherited
返回指定对象的字符串表示形式。
Object
 Inherited
返回指定对象的原始值。
Object
 Inherited
检查是否用此 EventDispatcher 对象或其任何始祖为指定事件类型注册了事件侦听器。
EventDispatcher
受保护的方法
 方法定义方
  
在每个子效果完成播放时调用。
CompositeEffectInstance
事件
 事件 摘要 定义方
 Inherited[广播事件] Flash Player 或 AIR 应用程序获得操作系统焦点并变为活动状态时将调度此事件。EventDispatcher
 Inherited[广播事件] Flash Player 或 AIR 应用程序失去操作系统焦点并变为非活动状态时将调度此事件。EventDispatcher
构造函数详细信息
CompositeEffectInstance()构造函数
public function CompositeEffectInstance(target:Object)

构造函数。

参数
target:Object — Composite 效果会忽略此参数。包含此参数的目的只是为了与其它类型的效果保持一致。
方法详细信息
addChildSet()方法
public function addChildSet(childSet:Array):void

向此 Composite 效果添加一组新的子效果。Sequence 效果将按子效果组的添加顺序一次播放一个子效果组。Parallel 效果将同时播放所有子效果组,而不考虑这些子效果组的添加顺序。

参数

childSet:Array — 要添加到 CompositeEffect 的子效果数组。

onEffectEnd()方法 
protected function onEffectEnd(childEffect:IEffectInstance):void

在每个子效果完成播放时调用。子类必须实现此函数。

参数

childEffect:IEffectInstance — 子效果。