begin
Usage
public var begin:Number
Description
The starting value of the tween.
Default
0
end
Usage
public var end:Number
Description
The ending value of the tween.
Default
1
steps
Usage
public var steps:Number
Description
The number of steps needed to complete a tween.
Default
100
currentStep
Usage
public var currentStep:Number
Description
The current step in the tween. This will be between 0 and steps.
Default
0
value
Usage
public var value:Number
Description
The value of the tween between begin and end.
Default
0
progress
Usage
public var progress:Number
Description
The progress of the tween in percent (0-1) not including ease.
Default
0
easeProgress
Usage
public var easeProgress:Number
Description
The progress of the tween in percent (usually 0-1) including ease.
Default
0
ease
Usage
public var ease:Function
Description
The function used to ease the tween progress.
direction
Usage
public var direction:Number
Description
Direction of movement, 1 for forward, -1 for reverse.
Default
1
enabled
Usage
public var enabled:Boolean
Description
Determines if tween is enabled. If not enabled, tween steps result in no change.
Default
true
behavior
Usage
public var behavior:String
Description
Determines if tween loops or yoyos or behaves normally. Acceptable values are
"loop" and "yoyo". Anything else results in a normal tween ending after reaching end.
Default
"default"
event
Usage
public var event:String
Description
Identifies the automatic tween. Values can be "enterFrame" or "interval".
Default
"enterFrame"
smooth
Usage
public var smooth:Boolean
Description
When true, smooths looped and yoyoed tweens. Smoothing prevents repetition
of tween values at their end points alloing for smoother transitions.
Default
false
round
Usage
public var round:Boolean
Description
When true, the tween rounds its resulting value each step
Default
false
clamp
Usage
public var clamp:Boolean
Description
When true, the tween's value never goes below begin and never above end.
Default
false