Package | com.boostworthy.animation.management.types |
Class | public class PulseAnimation |
Inheritance | PulseAnimation ![]() |
See also
Property | Defined by | ||
---|---|---|---|
m_nDuration : Number
Holds the duration of the animation in milliseconds.
| PulseAnimation | ||
m_nMax : Number
Holds the maximum value output by the pulse.
| PulseAnimation | ||
m_nMedian : Number
The median value of the min/max.
| PulseAnimation | ||
m_nMin : Number
Holds the minimum value output by the pulse.
| PulseAnimation | ||
m_nStartTime : Number
Holds the starting time of the animation in milliseconds.
| PulseAnimation | ||
m_nValue : Number
Holds the distance between the min/max and the median.
| PulseAnimation | ||
![]() | 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 | ||
---|---|---|---|
PulseAnimation(objTarget:Object, strProperty:String, nMin:Number, nMax:Number, nDuration:Number, uRenderMethod:uint)
Constructor.
| PulseAnimation | ||
render():Boolean
Renders the animation.
| PulseAnimation |
m_nDuration | property |
protected var m_nDuration:Number
Holds the duration of the animation in milliseconds.
m_nMax | property |
protected var m_nMax:Number
Holds the maximum value output by the pulse.
m_nMedian | property |
protected var m_nMedian:Number
The median value of the min/max.
m_nMin | property |
protected var m_nMin:Number
Holds the minimum value output by the pulse.
m_nStartTime | property |
protected var m_nStartTime:Number
Holds the starting time of the animation in milliseconds.
m_nValue | property |
protected var m_nValue:Number
Holds the distance between the min/max and the median.
PulseAnimation | () | constructor |
public function PulseAnimation(objTarget:Object, strProperty:String, nMin:Number, nMax:Number, nDuration:Number, uRenderMethod:uint)
Constructor.
ParametersobjTarget:Object — The target object being animated.
|
|
strProperty:String — The property of the target object that is being animated.
|
|
nMin:Number — The minimum value output by the pulse.
|
|
nMax:Number — The maximum value output by the pulse.
|
|
nDuration:Number — The duration of the animation in milliseconds.
|
|
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.
|