> I concur - GreenSock [TweenMax] is awesome Yes, well-designed, fast and feature-rich, though not open source, and not free (http://blog.greensock.com/licensing/).
It also tends to keep getting bigger and bigger, and I cannot keep up with all the changes - each time I check back to the site it seems there is a new upgrade. I just looked today and version 11 describes itself as a major upgrade. Gulp. I'm still on version 2.11 (from 15 months ago)... Darren P.S. Perhaps the author should release version 2 or so (when the design and feature set were still excellent but the license was still vague and giving the impression of being free and open source) as MIT open source and we can test the author's theory about which licensing model gives the best library ;-) > > On Nov 4, 2009, at 10:49 AM, Highley, Neil (LDN-LWW) wrote: > >> TweenMax can chain multiple events, but Beno said it right, if you’re >> having problems mixing AS2 and AS3 in the same code, you may need to >> step back a bit and do a few of the examples on the TweenMax site and >> amend them as your need. >> >> http://blog.greensock.com/tweenmax/ >> >> Neil Highley >> >> >> >> From: [email protected] [mailto:[email protected]] >> On Behalf Of beno - >> Sent: 04 November 2009 14:48 >> To: Open Source Flash Mailing List >> Subject: Re: [osflash] Tweening by Code >> >> I think I'm good to go on all of this *except*... >> >> I have a motion tween that goes from object A to object B, then C, D >> and finally E. How do I make the whole shooting match one big (small) >> movie? I've tried highlighting all the frames then pressing F8 but >> that doesn't seem to work (just makes the first frame a movie). Please >> advise. >> beno >> On Wed, Nov 4, 2009 at 1:02 AM, Chi Kin lam <[email protected]> wrote: >> Beno, >> >> Because: >> >> the 1st half of your codes: >> test.MovieClip = new MovieClip(); >> this.addChild(test); >> var i:Number = 0; >> >> (specially (addChild(test)) is actionscript 3 >> >> whereas: >> test.onEnterFrame = function() { >> while (i < 10) { >> i++; >> test.alpha += .10; >> }; >> } >> >> is actionscripts 2 >> >> are you making it in ver 2, or ver 3, check your document profile. >> And I think that is the problem!! >> >> If you are trying to do some tweening on codes, check out Tweener - an >> opening source online. >> >> http://code.google.com/p/tweener/ >> >> those remain questions, try to figure out yourself. Here are some hints: >> >> 1) framespeed == frame per second (fps) >> 2) to call a object to use on stage, you need to give a linkage name >> to the object from their property >> 3) try gotoAndPlay() per frame?? but that is not the ideal way of >> using frame for me >> >> Kind Regards, >> >> Keni, Lam >> E: [email protected] >> U: http://www.ki-cl.com >> Skype: keni_lam >> MSN: [email protected] >> >> On 4 Nov 2009, at 01:08, beno - wrote: >> >> Hi; >> I'm trying to figure out how to do an alpha tween. When I run this code: >> >> onClipEvent(enterFrame){ >> if(this._alpha < 100){ >> this._alpha += 1; >> }; >> } >> >> I get this error after the first line: >> Extra characters found after end of program >> >> When I create an object on the stage and convert it to a movie clip >> named "test" and run this script: >> >> test.MovieClip = new MovieClip(); >> this.addChild(test); >> var i:Number = 0; >> test.onEnterFrame = function() { >> while (i < 10) { >> i++; >> test.alpha += .10; >> }; >> } >> >> I get an error about test being an unidentified variable. Please advise. >> >> Also, while we're at it: >> 1) How do I change the framespeed? >> 2) I have a motion tween between different 5 graphics. I want to put >> the whole thing into a movie that I can place in the library and call >> as I will. How do I do that? Also, how do I reverse the movie? >> TIA, >> beno >> _______________________________________________ >> osflash mailing list >> [email protected] >> http://osflash.org/mailman/listinfo/osflash_osflash.org >> >> >> _______________________________________________ >> osflash mailing list >> [email protected] >> http://osflash.org/mailman/listinfo/osflash_osflash.org >> >> >> >> Lowe & Partners Worldwide Limited | Registered office: 60 Sloane >> Avenue, London SW3 3XB, England | Registered number: 506057 >> This message contains information which may be confidential and >> privileged. Unless you are the intended recipient (or authorized to >> receive >> this message for the intended recipient), you may not use, copy, >> disseminate or disclose to anyone the message or any information >> contained >> in the message. If you have received the message in error, please >> advise the sender by reply e-mail, and delete the message. >> Thank you very much. >> _______________________________________________ >> osflash mailing list >> [email protected] >> http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > ------------------------------------------------------------------------ > > _______________________________________________ > osflash mailing list > [email protected] > http://osflash.org/mailman/listinfo/osflash_osflash.org -- Darren Cook, Software Researcher/Developer http://dcook.org/gobet/ (Shodan Go Bet - who will win?) http://dcook.org/mlsn/ (Multilingual open source semantic network) http://dcook.org/work/ (About me and my work) http://dcook.org/blogs.html (My blogs and articles) _______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
