AbstractMultiTween

Kind of class:class
Inherits from:none
Implements:
Known subclasses:
Version:1.0
Author:Francis Bourre
Classpath:com.bourre.transitions.AbstractMultiTween
File last modified:Wednesday, 31 October 2007, 07:35:30
AbstractMultiTween is the base class for all concrete multitween classes implementation.

AbstractMultiTween is an abstract class.
Take a look at com.bourre.transitions package to see all concrete
implementation.

Instance methods

execute

function execute (
e:IEvent) : Void
Start tweening.

com.bourre.commands.Command polymorphism.

getEasing

function getEasing (
) : Function
Returns easing function.
Returns:
Easing Function

getTarget

function getTarget (
)
Returns tweening target.
Returns:
tweening target

isPlaying

function isPlaying (
) : Boolean
Returns true if the tween is currently playing.
Returns:
Boolean

resume

function resume (
) : Void
Plays tweening from current property's value without reinitializing.

setEasing

function setEasing (
f:Function) : Void
Defines easing function for tween effect.

Example

var t.setEasing(mx.transitions.easing.Elastic.easeOut);</em>
Parameters:
f:
Easing Function

start

function start (
) : Void
Starts tweening.
Specified by:

stop

function stop (
) : Void
Stops tweening.
Specified by:

toString

function toString (
) : String
Returns the string representation of this instance.
Returns:
the string representation of this instance

yoyo

function yoyo (
) : Void

Event handlers

onEnterFrame

function onEnterFrame (
) : Void
Don't use, overwrite or override this method.

That's the public callback of com.bourre.transitions.FBeacon used
internally to calculate tween progression.