Packagecom.boostworthy.animation.sequence.tweens
Interfacepublic interface ITween
ImplementorsAction, AdvancedTween, FilterTween, PathTween, Tween

The 'ITween' interface defines a common interface for all tween objects.



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined by
  
Creates a new tween object that is a clone of it's creator.
ITween
  
renderFrame(uFrame:uint):void
Renders the specified frame.
ITween
Property detail
firstFrameproperty
firstFrame:uint  [read-only]

Gets the first frame of the timeline that has a keyframe on it.

Implementation
    public function get firstFrame():uint
lastFrameproperty 
lastFrame:uint  [read-only]

Gets the last frame of the timeline that has a keyframe on it.

Implementation
    public function get lastFrame():uint
propertyproperty 
property:String  [read-only]

Gets a string of the target property.

Implementation
    public function get property():String
targetproperty 
target:Object  [read-only]

Gets a reference to the target object being tweened.

Implementation
    public function get target():Object
Method detail
clone()method
public function clone():ITween

Creates a new tween object that is a clone of it's creator.

Returns
ITween — A new tween object.
renderFrame()method 
public function renderFrame(uFrame:uint):void

Renders the specified frame.

Parameters
uFrame:uint — The frame to render.