Package | com.boostworthy.animation.sequence.tweens |
Interface | public interface ITween |
Implementors | Action, AdvancedTween, FilterTween, PathTween, Tween |
Property | Defined by | ||
---|---|---|---|
firstFrame : uint [read-only]
Gets the first frame of the timeline that has a keyframe on it.
| ITween | ||
lastFrame : uint [read-only]
Gets the last frame of the timeline that has a keyframe on it.
| ITween | ||
property : String [read-only]
Gets a string of the target property.
| ITween | ||
target : Object [read-only]
Gets a reference to the target object being tweened.
| ITween |
Method | Defined by | ||
---|---|---|---|
Creates a new tween object that is a clone of it's creator.
| ITween | ||
renderFrame(uFrame:uint):void
Renders the specified frame.
| ITween |
firstFrame | property |
firstFrame:uint
[read-only]Gets the first frame of the timeline that has a keyframe on it.
Implementation public function get firstFrame():uint
lastFrame | property |
lastFrame:uint
[read-only]Gets the last frame of the timeline that has a keyframe on it.
Implementation public function get lastFrame():uint
property | property |
property:String
[read-only]Gets a string of the target property.
Implementation public function get property():String
target | property |
target:Object
[read-only]Gets a reference to the target object being tweened.
Implementation public function get target():Object
clone | () | method |
public function clone():ITween
Creates a new tween object that is a clone of it's creator.
ReturnsITween —
A new tween object.
|
renderFrame | () | method |
public function renderFrame(uFrame:uint):void
Renders the specified frame.
ParametersuFrame:uint — The frame to render.
|