Package | com.boostworthy.animation.management.types.abstract |
Class | public class Animation |
Implements | IAnimation |
Subclasses | AlphaAnimation, BlurAnimation, BrightnessAnimation, ColorAnimation, ContrastAnimation, FilterAnimation, FunctionsAnimation, HueAnimation, MoveAnimation, PropertyAnimation, PulseAnimation, RotationAnimation, SaturationAnimation, ScaleAnimation, SizeAnimation |
Property | Defined by | ||
---|---|---|---|
method : uint [read-only]
Gets the method being used to render the animation.
| Animation | ||
property : String [read-only]
Gets the property of the target object being animated.
| Animation | ||
target : Object [read-only]
Gets a reference to the target object being animated.
| Animation |
Property | Defined by | ||
---|---|---|---|
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 | ||
---|---|---|---|
Animation(objTarget:Object, strProperty:String, uRenderMethod:uint)
Constructor.
| Animation | ||
render():Boolean
Renders the animation.
| Animation |
method | property |
method:uint
[read-only]Gets the method being used to render the animation.
Implementation public function get method():uint
See also
m_objTarget | property |
protected var m_objTarget:Object
Holds a reference to the target object being animated.
m_strProperty | property |
protected var m_strProperty:String
Holds the property of the target object that is being animated.
m_uRenderMethod | property |
protected var m_uRenderMethod:uint
Holds the method being used to render this animation.
property | property |
property:String
[read-only]Gets the property of the target object being animated.
Implementation public function get property():String
target | property |
target:Object
[read-only]Gets a reference to the target object being animated.
Implementation public function get target():Object
Animation | () | constructor |
public function Animation(objTarget:Object, strProperty:String, uRenderMethod:uint)
Constructor.
ParametersobjTarget:Object — The target object being animated.
|
|
strProperty:String — The property of the target object that is being animated.
|
|
uRenderMethod:uint — The method being used to render this animation.
|
See also
render | () | method |
public function render():Boolean
Renders the animation.
ReturnsBoolean — A boolean value that is 'true' if the animation was updated successfully, 'false' if it was not.
|