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.
Summary
Instance methods
execute
function execute (
e:IEvent) : Void
Start tweening.
com.bourre.commands.Command polymorphism.
See also:
Specified by:
getEasing
function getEasing (
) : Function
Returns easing function.
Returns:
Easing
FunctiongetTarget
function getTarget (
)
Returns tweening target.
Returns:
tweening target
isPlaying
function isPlaying (
) : Boolean
Returns true if the tween is currently playing.
Returns:
Booleanresume
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
FunctionSpecified 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.
Specified by: