From: dzedward on 2 Aug 2007 14:21 post your exact code, because what you are describing sounds nothing like I gave you
From: dzedward on 2 Aug 2007 14:22 use the attach code option.. Hit reply, it's next to Quote, Top, Bottom, then hit attach code, paste your code into that
From: steeve on 2 Aug 2007 14:32 here it is: import mx.transitions.easing.Strong; import mx.transitions.easing.None; import mx.transitions.Tween; var tw:Tween = new Tween(news_mc, "_xscale", Strong.easeOut, news_mc._xscale, 125, 2, true); var tw2:Tween = new Tween(news_mc, "_yscale", Strong.easeOut, news_mc._yscale, 125, 2, true); tw2.onMotionFinished = function(){ var tw3:Tween = new Tween(news_mc, "_xscale", Strong.easeOut, 125, 0, 1, true); var tw4:Tween = new Tween(news_mc, "_yscale", Strong.easeOut, 125, 0, 1, true) var tw5:Tween = new Tween(news_mc, "_alpha", Strong.easeOut, 100, 0, 1, true); }
From: dzedward on 2 Aug 2007 14:40 so you want it to grow for 2 seconds, then pause for 3, then scale away and fade at the same time?
From: steeve on 2 Aug 2007 15:33
what I **want** is this: http://youtube.com/watch?v=LeuzrWVT6Tk (just the headlines, not all the backgrounds and extra verbage) But I will settle for that. I'd rather not have it pause, but it seems neccesary because of the jitter invlved with a slow scale. Do you have any ideas? thanks |