From jon at shovemedia.com Tue Dec 9 17:43:43 2008 From: jon at shovemedia.com (Jon Williams) Date: Tue, 09 Dec 2008 20:43:43 -0500 Subject: [Golist] Sequence step order In-Reply-To: <5be612720811231857s606ddb3bv85819c46e9a72fec@mail.gmail.com> References: <5be612720811221715o60970cd4jd5ad949fd0755fdd@mail.gmail.com> <5be612720811231857s606ddb3bv85819c46e9a72fec@mail.gmail.com> Message-ID: <493F1ECF.8040400@shovemedia.com> i created a simple parallel Sequence with a couple of LinearGo items as steps using the addToLastStep parameter of Sequence.addStep (is this right?) works great. Even though they're set to run at the 'same time,' i actually *do* need to guarantee that the steps are initialized in the order the steps are added. (ie the GoEvent.STARTs need to fire in order ) And they do. Every other time. I temporarily hacked around it by adding a .01 pause to the 2nd tween. any better ideas? thx :j From joel at stranskydesign.com Wed Dec 10 08:14:06 2008 From: joel at stranskydesign.com (Joel Stransky) Date: Wed, 10 Dec 2008 11:14:06 -0500 Subject: [Golist] Sequence step order In-Reply-To: <493F1ECF.8040400@shovemedia.com> References: <5be612720811221715o60970cd4jd5ad949fd0755fdd@mail.gmail.com> <5be612720811231857s606ddb3bv85819c46e9a72fec@mail.gmail.com> <493F1ECF.8040400@shovemedia.com> Message-ID: <5be612720812100814v103d6afva2a4f2ba127a0164@mail.gmail.com> That's pretty much how you do it. You could also set the steps as sequential rather than parallel and use a custom advance (sequenceCA) in the first step using the same pause. On Tue, Dec 9, 2008 at 8:43 PM, Jon Williams wrote: > i created a simple parallel Sequence with a couple of LinearGo items as > steps > using the addToLastStep parameter of Sequence.addStep (is this right?) > works great. Even though they're set to run at the 'same time,' i actually > *do* > need to guarantee that the steps are initialized in the order the steps are > added. > (ie the GoEvent.STARTs need to fire in order ) > And they do. Every other time. > > I temporarily hacked around it by adding a .01 pause to the 2nd tween. > > any better ideas? > thx > :j > > _______________________________________________ > GoList mailing list > GoList at goasap.org > http://goasap.org/mailman/listinfo/golist_goasap.org > -- --Joel Stransky stranskydesign.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From moses at goasap.org Thu Dec 11 18:24:56 2008 From: moses at goasap.org (Moses Gunesch) Date: Thu, 11 Dec 2008 21:24:56 -0500 Subject: [Golist] Sequence step order In-Reply-To: <5be612720812100814v103d6afva2a4f2ba127a0164@mail.gmail.com> References: <5be612720811221715o60970cd4jd5ad949fd0755fdd@mail.gmail.com> <5be612720811231857s606ddb3bv85819c46e9a72fec@mail.gmail.com> <493F1ECF.8040400@shovemedia.com> <5be612720812100814v103d6afva2a4f2ba127a0164@mail.gmail.com> Message-ID: <0FCF3CBE-B5A2-46B3-AFAE-FC6FEED25363@goasap.org> Wait, I don't understand... what do you mean every other time? The events fire in different orders? Have you tried using the priority parameter of the AS3 event model? I've hit a few situations where that works wonders and it's built right in. -m On Dec 10, 2008, at 11:14 AM, Joel Stransky wrote: > That's pretty much how you do it. You could also set the steps as > sequential rather than parallel and use a custom advance > (sequenceCA) in the first step using the same pause. > > On Tue, Dec 9, 2008 at 8:43 PM, Jon Williams > wrote: > i created a simple parallel Sequence with a couple of LinearGo items > as steps > using the addToLastStep parameter of Sequence.addStep (is this right?) > works great. Even though they're set to run at the 'same time,' i > actually *do* > need to guarantee that the steps are initialized in the order the > steps are added. > (ie the GoEvent.STARTs need to fire in order ) > And they do. Every other time. > > I temporarily hacked around it by adding a .01 pause to the 2nd tween. > > any better ideas? > thx > :j > > _______________________________________________ > GoList mailing list > GoList at goasap.org > http://goasap.org/mailman/listinfo/golist_goasap.org > > > > -- > --Joel Stransky > stranskydesign.com > _______________________________________________ > GoList mailing list > GoList at goasap.org > http://goasap.org/mailman/listinfo/golist_goasap.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From jon at shovemedia.com Thu Dec 11 20:08:42 2008 From: jon at shovemedia.com (jon at shovemedia.com) Date: Thu, 11 Dec 2008 23:08:42 -0500 (EST) Subject: [Golist] Sequence step order In-Reply-To: <0FCF3CBE-B5A2-46B3-AFAE-FC6FEED25363@goasap.org> References: <5be612720811221715o60970cd4jd5ad949fd0755fdd@mail.gmail.com> <5be612720811231857s606ddb3bv85819c46e9a72fec@mail.gmail.com> <493F1ECF.8040400@shovemedia.com> <5be612720812100814v103d6afva2a4f2ba127a0164@mail.gmail.com> <0FCF3CBE-B5A2-46B3-AFAE-FC6FEED25363@goasap.org> Message-ID: <57876.66.93.240.239.1229054922.squirrel@webmail.tuffmail.net> i kid you not. every other time. still haven't tracked it down, but it looks like some sort of rogue garbage collection issue. I tried the priority parameter too, but that's ineffective because the priorities are tied to different steps, so they're not compared with one another -- the dispatchers are different lineaGos i'll work up a test case if i can... :j > Wait, I don't understand... what do you mean every other time? The > events fire in different orders? > > Have you tried using the priority parameter of the AS3 event model? > I've hit a few situations where that works wonders and it's built > right in. > > -m > > > On Dec 10, 2008, at 11:14 AM, Joel Stransky wrote: > >> That's pretty much how you do it. You could also set the steps as >> sequential rather than parallel and use a custom advance >> (sequenceCA) in the first step using the same pause. >> >> On Tue, Dec 9, 2008 at 8:43 PM, Jon Williams >> wrote: >> i created a simple parallel Sequence with a couple of LinearGo items >> as steps >> using the addToLastStep parameter of Sequence.addStep (is this right?) >> works great. Even though they're set to run at the 'same time,' i >> actually *do* >> need to guarantee that the steps are initialized in the order the >> steps are added. >> (ie the GoEvent.STARTs need to fire in order ) >> And they do. Every other time. >> >> I temporarily hacked around it by adding a .01 pause to the 2nd tween. >> >> any better ideas? >> thx >> :j >> >> _______________________________________________ >> GoList mailing list >> GoList at goasap.org >> http://goasap.org/mailman/listinfo/golist_goasap.org >> >> >> >> -- >> --Joel Stransky >> stranskydesign.com >> _______________________________________________ >> GoList mailing list >> GoList at goasap.org >> http://goasap.org/mailman/listinfo/golist_goasap.org > > _______________________________________________ > GoList mailing list > GoList at goasap.org > http://goasap.org/mailman/listinfo/golist_goasap.org > From gil at allflashwebsite.com Mon Dec 22 10:35:41 2008 From: gil at allflashwebsite.com (Gil Birman) Date: Mon, 22 Dec 2008 12:35:41 -0600 Subject: [Golist] Bezier HydroTween Message-ID: <44ce57930812221035i109ff11eyb5a65b8018ea53fe@mail.gmail.com> Just wondering if bezier tweening is still in the works. Gil -------------- next part -------------- An HTML attachment was scrubbed... URL: From donovan at hydrotik.com Mon Dec 22 10:53:33 2008 From: donovan at hydrotik.com (Donovan Adams) Date: Mon, 22 Dec 2008 13:53:33 -0500 Subject: [Golist] Bezier HydroTween Message-ID: <647f4e5a$14f35254$5fce7277$@com> On my list of things to do, just haven't had a chance to get on it. -------- Original Message -------- > From: "Gil Birman" > Sent: Monday, December 22, 2008 6:37 AM > To: "Mailing list for the Go ActionScript Animation Platform" > Subject: [Golist] Bezier HydroTween > > Just wondering if bezier tweening is still in the works. > Gil > > _______________________________________________ > GoList mailing list > GoList at goasap.org > http://goasap.org/mailman/listinfo/golist_goasap.org From audioguru at videotron.ca Wed Dec 31 12:33:42 2008 From: audioguru at videotron.ca (audioguru at videotron.ca) Date: Wed, 31 Dec 2008 15:33:42 -0500 Subject: [Golist] Newbie Question Message-ID: Hi! I'm new to Go but I already used the Fuse Kit before, I was wondering where I put the Go classes, with Fuse it was in the classes folder located at: (user/library/Application Support/Adobe/Flash CS3/en/Configuration/Classes/com) I've tryed puting the Go classes without any sucess there, it worked so far when I copy the class in the same folder as my swf file, do I have to do that all the time? Thanks for your time. Pascal -------------- next part -------------- An HTML attachment was scrubbed... URL: From tollman.owens at gmail.com Wed Dec 31 13:08:11 2008 From: tollman.owens at gmail.com (Tollman Owens) Date: Wed, 31 Dec 2008 16:08:11 -0500 Subject: [Golist] Newbie Question In-Reply-To: References: Message-ID: <317e53c40812311308k3657f335jd603b32476b9226c@mail.gmail.com> hello, nah, you don't need to do that all the time. you need to add the a classpath to the folder where you have the Go classes. something like Flash --> Prefs --> actionscript --> actionscript 3.0 settings --> then navigate to the folder you want Flash to be aware of (most likely one level above "org" or "com") and you should be good. google "flash classpath" if you're still stuck. good luck! On Wed, Dec 31, 2008 at 3:33 PM, wrote: > Hi! > > I'm new to Go but I already used the Fuse Kit before, I was wondering where > I put the Go classes, with Fuse it was in the classes folder located at: > (user/library/Application Support/Adobe/Flash > CS3/en/Configuration/Classes/com) > > I've tryed puting the Go classes without any sucess there, it worked so far > when I copy the class in the same folder as my swf file, do I have to do > that all the time? > > Thanks for your time. > > Pascal > _______________________________________________ > GoList mailing list > GoList at goasap.org > http://goasap.org/mailman/listinfo/golist_goasap.org > >