| Package | com.addicted2flash.tween |
| Interface | public interface IFlux extends IDisposable |
| Implementors | Flux |
| Property | Defined by | ||
|---|---|---|---|
| attachment : * [read-only]
Returns the specified attachment.
| IFlux | ||
| fluxObserverCount : int [read-only]
Returns the total amount of observers.
| IFlux | ||
| property : Property
[write-only]
Sets first property of the flux.
| IFlux | ||
| state : int [read-only]
Returns the state of the
IFlux. | IFlux | ||
| totalDuration : int [read-only]
Returns the duration of the tween.
| IFlux | ||
| Method | Defined by | ||
|---|---|---|---|
|
addFluxObserver(o:IFluxObserver):void
Adds a
IFluxObserver. | IFlux | ||
![]() |
dispose():void
free memory for garbage collection.
| IDisposable | |
|
pause():void
Pause the tween.
| IFlux | ||
|
removeFluxObserver(o:IFluxObserver):void
Removes a
IFluxObserver. | IFlux | ||
|
resume():void
Resumes the tween.
| IFlux | ||
|
reverse():void
Starts the tween in reverse direction.
| IFlux | ||
|
start():void
Starts the tween.
| IFlux | ||
|
stop():void
Stopps the tween.
| IFlux | ||
| attachment | property |
attachment:* [read-only]Returns the specified attachment.
Implementation public function get attachment():*
| fluxObserverCount | property |
fluxObserverCount:int [read-only]Returns the total amount of observers.
Implementation public function get fluxObserverCount():int
| property | property |
property:Property [write-only]Sets first property of the flux.
NOTE: use Property.create()
public function set property(value:Property):void
| state | property |
state:int [read-only]
Returns the state of the IFlux.
public function get state():int
See also
| totalDuration | property |
totalDuration:int [read-only]Returns the duration of the tween.
Implementation public function get totalDuration():int
| addFluxObserver | () | method |
public function addFluxObserver(o:IFluxObserver):void
Adds a IFluxObserver.
o:IFluxObserver — observer to be added
|
| pause | () | method |
public function pause():voidPause the tween.
| removeFluxObserver | () | method |
public function removeFluxObserver(o:IFluxObserver):void
Removes a IFluxObserver.
o:IFluxObserver — observer to be removed
|
| resume | () | method |
public function resume():voidResumes the tween.
| reverse | () | method |
public function reverse():voidStarts the tween in reverse direction.
| start | () | method |
public function start():voidStarts the tween.
| stop | () | method |
public function stop():voidStopps the tween.