[Golist] sequencing
Shane Colella
scolella at qorvis.com
Tue Jun 10 11:18:09 PDT 2008
Re:
To build a sequence then automatically start it you can use the
shortcut:
HydroTween.sequence();
If you wish to stop the sequence you just call:
seqOver.stop();
Insert an item in the sequence at a specified index:
seqOver.addStepAt({}, 0);
Insert an item at the end of a sequence:
seqOver.addStep({});
Pause a sqeuence:
seqOver.pause();
Resume a sequence:
seqOver.resume();
Skip to a specific item in a sequence:
seqOver.skipTo(2);
Remove a specific item in a sequence:
seqOver.removeStepAt(1);
Just what I needed, thanks Donovan, can't wait to see the new docs.
Shane Michael Colella
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://goasap.org/pipermail/golist_goasap.org/attachments/20080610/18b3c8c8/attachment.html
More information about the GoList
mailing list