AQProperty
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Classpath: | org.asaplibrary.util.actionqueue.AQProperty |
File last modified: | Wednesday, 11 May 2011, 18:53:50 |
Action method to control an object's property over time.
Summary
Instance methods
- change (inObject:Object, inProperty:String, inDuration:Number, inStartValue:Number = NaN, inEndValue:Number = NaN, inEffect:Function = null) : Function
Instance methods
change
function change(inObject:Object,
inProperty:String,
inDuration:Number,
inStartValue:Number = NaN,
inEndValue:Number = NaN,
inEffect:Function = null) : Function
Parameters
inObject :object to change; this may be a DisplayObject or any other object
inProperty :name of property (in inObject) that will be affected; for instance "x" for the x position of a DisplayObject
inDuration :length of change in seconds; 0 is used for perpetual animations - use -1 for instant change
inStartValue:(optional) the starting value of inProperty; if NaN the current object value will be used
inEndValue :(optional) the end value of inProperty; if NaN the current object value will be used
inEffect :(optional) an effect function, for instance one of the fl.motion.easing methods
Returns
- A reference to initDoChange that in turn returns the performing change TimedAction.