Package | com.desuade.motion.sequences |
Class | public dynamic class SequenceGroup |
Inheritance | SequenceGroup ![]() |
Implements | flash.events.IEventDispatcher |
Language Version : | ActionScript 3 |
Since : | 29.07.2009 |
Runtime Versions : | AIR 1.0, Flash Player 9.0.0 |
Property | Defined By | ||
---|---|---|---|
current : Array [read-only]
An array of the current items being ran. | SequenceGroup | ||
duration : Number [read-only]
This gets the total duration if the Class ONLY if the motionClass is a tween. | SequenceGroup | ||
manualServe : Boolean
If this is true, the SequenceGroup wont call serve() automatically. | SequenceGroup | ||
waiting : int [read-only]
How many items are left to be completed. | SequenceGroup |
Method | Defined By | ||
---|---|---|---|
SequenceGroup(... args)
This creates a "group" of motion items that will be started together (parallel), instead of sequentially.
This gets automatically created if the Sequence encounters an Array.
| SequenceGroup | ||
pushArray(array:Array):SequenceGroup
Takes all the items in an Array and pushes them into the Sequence. | SequenceGroup | ||
serve(o:Object = null):void
This tells the SequenceGroup that one of the items ended.
| SequenceGroup |
current | property |
current:Array
[read-only] An array of the current items being ran.
public function get current():Array
duration | property |
duration:Number
[read-only] This gets the total duration if the Class ONLY if the motionClass is a tween.
public function get duration():Number
manualServe | property |
manualServe:Boolean
If this is true, the SequenceGroup wont call serve() automatically.
public function get manualServe():Boolean
public function set manualServe(value:Boolean):void
waiting | property |
waiting:int
[read-only] How many items are left to be completed.
public function get waiting():int
SequenceGroup | () | Constructor |
public function SequenceGroup(... args)
This creates a "group" of motion items that will be started together (parallel), instead of sequentially.
This gets automatically created if the Sequence encounters an Array.
Parameters... args |
pushArray | () | method |
public function pushArray(array:Array):SequenceGroup
Takes all the items in an Array and pushes them into the Sequence.
Parameters
array:Array — An Array with Sequenceable Objects.
|
SequenceGroup — Returns the Sequence (for chaining)
|
serve | () | method |
public function serve(o:Object = null):void
This tells the SequenceGroup that one of the items ended.
Parameters
o:Object (default = null )
|