function TweenListObj(p_scope:Object, p_timeStart:Number, p_timeComplete:Number, p_useFrames:Boolean, p_transition:Function, p_transitionParams:Object)
Initializes the basic TweenListObj
p_scope | Object Object affected by this tweening |
p_timeStart | Number Time when this tweening should start |
p_timeComplete | Number Time when this tweening should end |
p_useFrames | Boolean Whether or not to use frames instead of time |
p_transition | Function Equation to control the transition animation |
public scope:Object
public properties:Object
public timeStart:Number
public timeComplete:Number
public useFrames:Boolean
public transition:Function
public transitionParams:Object
public onStart:Function
public onUpdate:Function
public onComplete:Function
public onOverwrite:Function
public onError:Function
public onStartParams:Array
public onUpdateParams:Array
public onCompleteParams:Array
public onOverwriteParams:Array
public onStartScope:Object
public onUpdateScope:Object
public onCompleteScope:Object
public onOverwriteScope:Object
public onErrorScope:Object
public rounded:Boolean
public isPaused:Boolean
public timePaused:Number
public isCaller:Boolean
public count:Number
public timesCalled:Number
public waitFrames:Boolean
public skipUpdates:Number
public updatesSkipped:Number
public hasStarted:Boolean
public function clone(omitEvents:Boolean):TweenListObj
Clones this tweening and returns the new TweenListObj
omitEvents | Boolean Whether or not events such as onStart (and its parameters) should be omitted |
TweenListObj A copy of this object
public function toString():String
Returns this object described as a String.
String The description of this object.
static public function makePropertiesChain(p_obj:Object):Object
Checks if p_obj "inherits" properties from other objects, as set by the "base" property. Will create a new object, leaving others intact. o_bj.base can be an object or an array of objects. Properties are collected from the first to the last element of the "base" filed, with higher indexes overwritting smaller ones. Does not modify any of the passed objects, but makes a shallow copy of all properties.
p_obj | Object Object that should be tweened: a movieclip, textfield, etc.. OR an array of objects |
Object A new object with all properties from the p_obj and p_obj.base.