<HTML>
<HEAD>
<TITLE>Hydro Info + FlashBelt</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>Been having a blast here at Flashbelt. Great response from everyone and it’s been excellent seeing old faces and meeting new ones. Once again thanks to Moses for letting me be a part of his presentation. Even before the presentation, creating documentation has been on the top of my list of things to do. I plan on doing this right away when I get back. First off here are the files including the source from my part of the presentation. The presentation itself has been included as well.<BR>
<BR>
<a href="http://blog.hydrotik.com/2008/06/08/flashbelt-2008-animation-to-go-hydrotween-papervision3d/">http://blog.hydrotik.com/2008/06/08/flashbelt-2008-animation-to-go-hydrotween-papervision3d/</a><BR>
<BR>
<BR>
<BR>
<BR>
In the meantime here is some useful info for using the sequencing part of HydroTween.<BR>
<BR>
<BR>
var segOver : SequenceCA = HydroTween.parseSequence(
[
{target:bg, width:300, brightness:-.5, duration:ANIMATION_TIME, easing:EASING},
{target:arrow, alpha:1, x:40, duration:ANIMATION_TIME, easing:EASING},
{target:tf, x:50, alpha:1, duration:ANIMATION_TIME, easing:EASING},
{target:item, alpha:1, scaleX:1.2, scaleY:1.2, y:_posArray[i], duration:ANIMATION_TIME, easing:EASING}
]
);<BR>
seqOver.start();<BR>
<BR>
<BR>
To build a sequence then automatically start it you can use the shortcut:<BR>
HydroTween.sequence();<BR>
<BR>
<BR>
If you wish to stop the sequence you just call:<BR>
seqOver.stop();<BR>
<BR>
Insert an item in the sequence at a specified index:<BR>
seqOver.addStepAt({}, 0);<BR>
<BR>
Insert an item at the end of a sequence:<BR>
seqOver.addStep({});<BR>
<BR>
Pause a sqeuence:<BR>
seqOver.pause();
<BR>
Resume a sequence:<BR>
seqOver.resume();
<BR>
Skip to a specific item in a sequence:<BR>
seqOver.skipTo(2);
<BR>
Remove a specific item in a sequence:<BR>
seqOver.removeStepAt(1);<BR>
<BR>
<BR>
I will move these over to the FlashBelt post in sometime today just so it’s in a specific spot.<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
On 6/10/08 8:01 AM, "Shane Colella" <scolella@qorvis.com> wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT SIZE="4"><FONT FACE="Arial"><SPAN STYLE='font-size:13.0px'> <BR>
Howdy Group, <BR>
<BR>
I was trying to build a sequence in HydroTween by pushing objects into the sequence from a loop that loads different movieclips to no avail this morning.<BR>
<BR>
I’m wondering if any of the gurus here could help. <BR>
<BR>
What would be the most efficient and best practice to build a sequence on the fly? I had done this in the past with fuse but it doesn’t seem to work the way I think it should,…<BR>
<BR>
Here is how I have last tried so far<BR>
<BR>
var sequence1:SequenceCA = HydroTween.sequence();<BR>
<BR>
(the following is inside the function that plays every time a new item has been pushed onto arrThumbs)<BR>
<BR>
var tmpMC:MovieClip = _arrThumbs[i] as MovieClip;<BR>
sequence1.push({target:tmpMC, scaleX:1, scaleY:1, alpha:1, easing:Quartic.easeIn});<BR>
<BR>
then I call this function after all my thumbnails have loaded<BR>
public function startThumbIntro():void {<BR>
sequence1.start();<BR>
}<BR>
<BR>
<BR>
Any one that can shed some light on this process would be great,…<BR>
<BR>
Thanks<BR>
Hope you cats are having fun at flashBelt….<BR>
<BR>
<BR>
Shane Michael Colella<BR>
</SPAN></FONT></FONT><FONT FACE="Arial"><FONT SIZE="5"><SPAN STYLE='font-size:16.0px'> <BR>
</SPAN></FONT></FONT><FONT SIZE="5"><SPAN STYLE='font-size:16.0px'><FONT FACE="Times New Roman"> <BR>
</FONT></SPAN></FONT><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'><BR>
<HR ALIGN=CENTER SIZE="3" WIDTH="95%"></SPAN></FONT><FONT SIZE="2"><FONT FACE="Monaco, Courier New"><SPAN STYLE='font-size:10.0px'>_______________________________________________<BR>
GoList mailing list<BR>
GoList@goasap.org<BR>
<a href="http://goasap.org/mailman/listinfo/golist_goasap.org">http://goasap.org/mailman/listinfo/golist_goasap.org</a><BR>
</SPAN></FONT></FONT></BLOCKQUOTE><FONT SIZE="2"><FONT FACE="Monaco, Courier New"><SPAN STYLE='font-size:10.0px'><BR>
</SPAN></FONT></FONT>
</BODY>
</HTML>