ITween

The ‘ITween’ interface defines a common interface for all tween objects.

Summary
ITweenThe ‘ITween’ interface defines a common interface for all tween objects.
Functions
cloneCreates a new tween object that is a clone of it’s creator.
renderFrameRenders the specified frame.
Properties
firstFrameGets the first frame of the timeline that has a keyframe on it.
lastFrameGets the last frame of the timeline that has a keyframe on it.
targetGets a reference to the target object being tweened.
propertyGets a string of the target property.

Functions

clone

function clone():ITween

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

Returns

A new tween object. 

renderFrame

function renderFrame(uFrame: uint):void

Renders the specified frame.

Parameters

param uFrame The frame to render. 

Properties

firstFrame

function get firstFrame():uint

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

Returns

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

lastFrame

function get lastFrame():uint

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

Returns

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

target

function get target():Object

Gets a reference to the target object being tweened.

Returns

A reference to the target object being tweened. 

property

function get property():String

Gets a string of the target property.

Returns

A string of the target property. 

The ‘Action’ class represents an action to take place when a specified frame of the timeline that the action belongs to is rendered.
The ‘AdvancedTween’ class tweens the property of an object using a path as a graph.
Extends the AdvancedTween class with dispose, refresh and read-only properties.
The ‘FilterTween’ class tweens the property of any object’s filter to a specified target value.
function clone():ITween
Creates a new tween object that is a clone of it’s creator.
function renderFrame(uFrame: uint):void
Renders the specified frame.
function get firstFrame():uint
Gets the first frame of the timeline that has a keyframe on it.
function get lastFrame():uint
Gets the last frame of the timeline that has a keyframe on it.
function get target():Object
Gets a reference to the target object being tweened.
function get property():String
Gets a string of the target property.
Close