Package | com.boostworthy.animation.management.types |
Class | public class FunctionsAnimation |
Inheritance | FunctionsAnimation ![]() |
See also
Property | Defined by | ||
---|---|---|---|
m_fncSet : Function
Holds a reference to the target object's set function.
| FunctionsAnimation | ||
m_fncTransition : Function
Holds a reference to the transition function being used for this animation.
| FunctionsAnimation | ||
m_nChangeValue : Number
Holds the change in value for the property.
| FunctionsAnimation | ||
m_nDuration : Number
Holds the duration of the animation in milliseconds.
| FunctionsAnimation | ||
m_nStartTime : Number
Holds the starting time of the animation in milliseconds.
| FunctionsAnimation | ||
m_nStartValue : Number
Holds the starting value for the property.
| FunctionsAnimation | ||
m_nTargetValue : Number
Holds the target value for the property.
| FunctionsAnimation | ||
![]() | m_objTarget : Object
Holds a reference to the target object being animated.
| Animation | |
![]() | m_strProperty : String
Holds the property of the target object that is being animated.
| Animation | |
![]() | m_uRenderMethod : uint
Holds the method being used to render this animation.
| Animation |
Method | Defined by | ||
---|---|---|---|
FunctionsAnimation(objTarget:Object, strGetFunction:String, strSetFunction:String, nTargetValue:Number, nDuration:Number, strTransition:String, uRenderMethod:uint)
Constructor.
| FunctionsAnimation | ||
render():Boolean
Renders the animation.
| FunctionsAnimation |
m_fncSet | property |
protected var m_fncSet:Function
Holds a reference to the target object's set function.
m_fncTransition | property |
protected var m_fncTransition:Function
Holds a reference to the transition function being used for this animation.
m_nChangeValue | property |
protected var m_nChangeValue:Number
Holds the change in value for the property.
m_nDuration | property |
protected var m_nDuration:Number
Holds the duration of the animation in milliseconds.
m_nStartTime | property |
protected var m_nStartTime:Number
Holds the starting time of the animation in milliseconds.
m_nStartValue | property |
protected var m_nStartValue:Number
Holds the starting value for the property.
m_nTargetValue | property |
protected var m_nTargetValue:Number
Holds the target value for the property.
FunctionsAnimation | () | constructor |
public function FunctionsAnimation(objTarget:Object, strGetFunction:String, strSetFunction:String, nTargetValue:Number, nDuration:Number, strTransition:String, uRenderMethod:uint)
Constructor.
ParametersobjTarget:Object — The target object being animated.
|
|
strGetFunction:String — The get function of the target object that is being animated.
|
|
strSetFunction:String — The set function of the target object that is being animated.
|
|
nTargetValue:Number — The value the property is getting animated to.
|
|
nDuration:Number — The duration of the animation in milliseconds.
|
|
strTransition:String — The transition to be used for the animation.
|
|
uRenderMethod:uint — The method being used to render this animation.
|
See also
render | () | method |
public override function render():Boolean
Renders the animation.
ReturnsBoolean — A boolean value that is 'true' if the animation was updated successfully, 'false' if it was not.
|