I'm fairly new to svn too. Get yourself TortoiseSVN. It adds a bunch of convenient commands to your contextual menu.<br><br><div class="gmail_quote">On Mon, Jun 30, 2008 at 3:28 AM, Eric-Paul Lecluse <<a href="mailto:eric-paul.lecluse@lbi.lostboys.nl">eric-paul.lecluse@lbi.lostboys.nl</a>> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div>
<font face="Calibri, Verdana, Helvetica, Arial"><span style="font-size: 11pt;">Hey list, I'm currently using GO's SequenceCA (via an example by John Grden). In the sequence I'd like to insert a single direct functioncall, as you are doing with the fuse-named sequence below. Is that possible with a SequenceCA? <br>
<br>
Obviously I'm very new to Go, for I can't even find the HydroTween class in the Go SVN repos.<br>
<br>
Who'll give me a slap in the face and a kick in the right direction?<br>
Cheers,<br><font color="#888888">
Eric-Paul.</font><div><div></div><div class="Wj3C7c"><br>
<br>
On 6/27/08 17:52 , "Donovan Adams" <<a href="http://donovan@hydrotik.com" target="_blank">donovan@hydrotik.com</a>> wrote:<br>
<br>
</div></div></span></font><blockquote><div><div></div><div class="Wj3C7c"><font face="Calibri, Verdana, Helvetica, Arial"><span style="font-size: 11pt;">As a matter of fact there is. I've been in the process of testing an update to HydroTween as well as a breakout for Fuse style sequencing which more easily extends the power of SequenceCA. My continuing plan with HydroTween is to keep everything self contained, however this really made more sense in order to take advantage of Go's flexibility. SO with that said, I've added another companion class called HydroSequence. Works like this:<br>
<br>
import com.hydrotik.go.HydroSequence;<br>
<br>
var fuse:HydroSequence = new HydroSequence();<br>
<br>
<br>
for (i = 0; i < _headArray.length - 1; i++) {<br>
//HydroTween.go(_headArray[i].container, {alpha:1}, .25, i/4, Quadratic.easeOut);<br>
fuse.addItem({target:_headArray[i].container, alpha:1, duration:.15, easing:Quadratic.easeOut});<br>
}<br>
<br>
<br>
fuse.addItem({target:_logo, alpha:1, duration:1, easing:Quadratic.easeOut});<br>
fuse.addItem({target:_headArray[_headArray.length - 1].container, delay:1, alpha:1, duration:.1, easing:Quadratic.easeOut});<br>
fuse.addItem({func: triggerAudio});<br>
fuse.addItem({func: _scope.addEventListener, args:[Event.ENTER_FRAME, renderHeads]});<br>
fuse.addItem({func: drawNav});<br>
<br>
fuse.start();<br>
<br>
HydroSequence internally generates instances of HydroTween to a sequence. All of the functionality of SequenceCA is accessble through HydroSequence now.<br>
<br>
If you are interested in testing out/playing with the new version of HydroTween and HydroSequence, contact me offlist and I'll send you the latest. So far it's working great, but wanted to make sure it gets a decent testing before formally posting the updates. Otherwise I should be releasing this soon.<br>
<br>
<br>
Moses, forgive me for naming all my sequences "fuse". :) Habit I picked up from using Fuse AS2 and I copied and pasted this from the new scaretactics site.<br>
<br>
<a href="http://www.scifi.com/scaretactics/" target="_blank">http://www.scifi.com/scaretactics/</a><br>
<br>
<br>
*******<br>
</span></font><font size="2"><font face="Arial"><span style="font-size: 10pt;">Are there any plans to allow HydroTween's sequencing to allow for direct method calls instead of callbacks? Something like:<br>
<br>
var seq1:SequenceCA = HydroTween.sequence(<br>
,{target:my_mc, x:0, y:0, alpha:1, duration:3, easing:Sine.easeInOut}<br>
,{scope:this, func:"myFunction", args["hi"]}<br>
}<br>
<br>
I've been on an Flash hiatus, and must say I'm impressed with how far HydroTween's come :)<br>
</span></font></font></div></div><font face="Calibri, Verdana, Helvetica, Arial"><span style="font-size: 11pt;"><br>
<hr align="center" size="3" width="95%"></span></font><div class="Ih2E3d"><font size="2"><font face="Consolas, Courier New, Courier"><span style="font-size: 10pt;">_______________________________________________<br>
GoList mailing list<br>
<a href="http://GoList@goasap.org" target="_blank">GoList@goasap.org</a><br>
<a href="http://goasap.org/mailman/listinfo/golist_goasap.org" target="_blank">http://goasap.org/mailman/listinfo/golist_goasap.org</a><br>
</span></font></font></div></blockquote>
</div>
<br>_______________________________________________<br>
GoList mailing list<br>
<a href="mailto:GoList@goasap.org">GoList@goasap.org</a><br>
<a href="http://goasap.org/mailman/listinfo/golist_goasap.org" target="_blank">http://goasap.org/mailman/listinfo/golist_goasap.org</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>--Joel