Packageorg.as3lib.kitchensync.action
Interfacepublic interface ITween extends IAction, ISynchronizerClient, flash.events.IEventDispatcher
ImplementorsKitchenSyncObjectParser, KSSimpleTween, KSTween

Indicates a tween class.



Public Properties
 PropertyDefined by
 Inheriteddelay : int
delay is the time that will pass after the start() method is called before the action begins.
IAction
 Inheritedduration : int
duration is the length of time that the action will run.
IAction
 InheritedisPaused : Boolean
Should return true if the action is paused.
IAction
 InheritedisRunning : Boolean
Should return true if the action is running (or paused).
IAction
Public Methods
 MethodDefined by
 Inherited
Returns an exact copy of the action.
IAction
 Inherited
kill():void
Unregisters the action and removes any refrerences to objects that it may be holding onto.
IAction
 Inherited
pause():void
Causes the action to be paused.
IAction
 Inherited
Starts the timer for this action.
IAction
 Inherited
stop():void
Stops the action from running and resets the timer.
IAction
 Inherited
unpause():void
Resumes the action at the point where it was paused.
IAction
 Inherited
update(currentTimestamp:Timestamp):void
Update will allow the synchronizer to update the action with the current time.
ISynchronizerClient