<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: TimelineMax &#8211; Sequence/Group Multiple Tweens, Control Them as a Whole</title>
	<atom:link href="http://www.greensock.com/timelinemax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.greensock.com/timelinemax/</link>
	<description>Engaging the internet</description>
	<lastBuildDate>Mon, 30 Jan 2012 07:43:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jack</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-36160</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Wed, 11 Jan 2012 15:38:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-36160</guid>
		<description>Sure, faisal, you can animate pretty much anything with the GreenSock tweening platform. I&#039;ve built entire projects with animations like those (in the video you linked to) without any traditional timeline animations. I tend to do everything through ActionScript because of the flexibility it affords. Plus it can be faster especially when animating a lot of objects at once. Being able to modularize things and nest TimelineLites/Maxes inside other ones makes it particularly convenient to build complex, lengthy animation projects. See http://www.greensock.com/tweening-tips/#3 for that technique.

Happy tweening!</description>
		<content:encoded><![CDATA[<p>Sure, faisal, you can animate pretty much anything with the GreenSock tweening platform. I&#8217;ve built entire projects with animations like those (in the video you linked to) without any traditional timeline animations. I tend to do everything through ActionScript because of the flexibility it affords. Plus it can be faster especially when animating a lot of objects at once. Being able to modularize things and nest TimelineLites/Maxes inside other ones makes it particularly convenient to build complex, lengthy animation projects. See <a href="http://www.greensock.com/tweening-tips/#3" rel="nofollow">http://www.greensock.com/tweening-tips/#3</a> for that technique.</p>
<p>Happy tweening!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: faisal</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-36145</link>
		<dc:creator>faisal</dc:creator>
		<pubDate>Wed, 11 Jan 2012 11:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-36145</guid>
		<description>Hey,

can we create these kinds of animations with TimeLineMax, (instead of doing this on main flash timeline) ???

http://www.youtube.com/watch?v=ypmfs3z8esI</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>can we create these kinds of animations with TimeLineMax, (instead of doing this on main flash timeline) ???</p>
<p><a href="http://www.youtube.com/watch?v=ypmfs3z8esI" rel="nofollow">http://www.youtube.com/watch?v=ypmfs3z8esI</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-28647</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Wed, 08 Jun 2011 16:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-28647</guid>
		<description>Sure, Kevin, you could just create your main TimelineMax, pause it, and then use 2 tweens to play it forwards and backwards and tuck those into a parent TimelineMax that gets repeated. Kinda like:

var mainTL:TimelineLite = new TimelineLite({paused:true});
mainTL.append( ... )
...add all your tweens...

var parentTL:TimelineMax = new TimelineMax({repeat:-1});
parentTL.append( new TweenLite(mainTL, mainTL.duration, {currentTime:mainTL.duration, ease:Linear.easeNone}), 1);
parentTL.append( new TweenLite(mainTL, mainTL.duration * 0.5, {currentTime:0, ease:Linear.easeNone}), 1);
parentTL.gotoAndPlay(1);</description>
		<content:encoded><![CDATA[<p>Sure, Kevin, you could just create your main TimelineMax, pause it, and then use 2 tweens to play it forwards and backwards and tuck those into a parent TimelineMax that gets repeated. Kinda like:</p>
<p>var mainTL:TimelineLite = new TimelineLite({paused:true});<br />
mainTL.append( &#8230; )<br />
&#8230;add all your tweens&#8230;</p>
<p>var parentTL:TimelineMax = new TimelineMax({repeat:-1});<br />
parentTL.append( new TweenLite(mainTL, mainTL.duration, {currentTime:mainTL.duration, ease:Linear.easeNone}), 1);<br />
parentTL.append( new TweenLite(mainTL, mainTL.duration * 0.5, {currentTime:0, ease:Linear.easeNone}), 1);<br />
parentTL.gotoAndPlay(1);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Nugent</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-28641</link>
		<dc:creator>Kevin Nugent</dc:creator>
		<pubDate>Wed, 08 Jun 2011 14:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-28641</guid>
		<description>Hi, yoyo is just what I need for a banner that I&#039;m working on though I&#039;d really like the tween to reverse much quicker than it plays forwards.  I was hoping for something like &#039;reverseTimeScale&#039;

var timeline:TimelineMax = new TimelineMax({repeat:-1, yoyo:true, repeatDelay:1.0, reverseTimeScale:2.0});

Any pointers on the best way to achieve this will me very much appreciated. 

Many thanks
Kev</description>
		<content:encoded><![CDATA[<p>Hi, yoyo is just what I need for a banner that I&#8217;m working on though I&#8217;d really like the tween to reverse much quicker than it plays forwards.  I was hoping for something like &#8216;reverseTimeScale&#8217;</p>
<p>var timeline:TimelineMax = new TimelineMax({repeat:-1, yoyo:true, repeatDelay:1.0, reverseTimeScale:2.0});</p>
<p>Any pointers on the best way to achieve this will me very much appreciated. </p>
<p>Many thanks<br />
Kev</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viaria</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-26372</link>
		<dc:creator>viaria</dc:creator>
		<pubDate>Sun, 17 Apr 2011 23:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-26372</guid>
		<description>The engine works perfectly.</description>
		<content:encoded><![CDATA[<p>The engine works perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-21918</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Sat, 15 Jan 2011 17:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-21918</guid>
		<description>Ricardo, it sounds like you must have a stale version of some of the classes (like SimpleTimeline) and a newer version of TimelineLite. Make sure you update all your GreenSock stuff. And if you&#039;re subloading things, make sure you republish the parent and child swfs so you don&#039;t have mis-matching classes.</description>
		<content:encoded><![CDATA[<p>Ricardo, it sounds like you must have a stale version of some of the classes (like SimpleTimeline) and a newer version of TimelineLite. Make sure you update all your GreenSock stuff. And if you&#8217;re subloading things, make sure you republish the parent and child swfs so you don&#8217;t have mis-matching classes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-21910</link>
		<dc:creator>Ricardo</dc:creator>
		<pubDate>Sat, 15 Jan 2011 13:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-21910</guid>
		<description>Hi Jack

After updating the API to version 1.63 the following code :

var timeline:TimelineMax;
timeline = new TimelineMax( { onReverseComplete:timelineClear } );

gives me the error :

VerifyError: Error #1053: Illegal override of insert in com.greensock.TimelineLite.

What could it be ?</description>
		<content:encoded><![CDATA[<p>Hi Jack</p>
<p>After updating the API to version 1.63 the following code :</p>
<p>var timeline:TimelineMax;<br />
timeline = new TimelineMax( { onReverseComplete:timelineClear } );</p>
<p>gives me the error :</p>
<p>VerifyError: Error #1053: Illegal override of insert in com.greensock.TimelineLite.</p>
<p>What could it be ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-19722</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Thu, 02 Dec 2010 18:51:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-19722</guid>
		<description>Sure, Mike, you can align tweens at the start when you add them one-by-one. That&#039;s exactly what the insert() method is for. It gives you total control over where you place each tween on the timeline. So you can do this:

timeline.insert( new TweenLite(...), 0);
timeline.insert( new TweenLite(...), 0);

Both tweens would be aligned at the very beginning of the timeline. 

If you haven&#039;t already watched it, please view the video at http://www.greensock.com/timeline-basics/ because it should clear things up for you.</description>
		<content:encoded><![CDATA[<p>Sure, Mike, you can align tweens at the start when you add them one-by-one. That&#8217;s exactly what the insert() method is for. It gives you total control over where you place each tween on the timeline. So you can do this:</p>
<p>timeline.insert( new TweenLite(&#8230;), 0);<br />
timeline.insert( new TweenLite(&#8230;), 0);</p>
<p>Both tweens would be aligned at the very beginning of the timeline. </p>
<p>If you haven&#8217;t already watched it, please view the video at <a href="http://www.greensock.com/timeline-basics/" rel="nofollow">http://www.greensock.com/timeline-basics/</a> because it should clear things up for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-19717</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 02 Dec 2010 13:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-19717</guid>
		<description>Hello man. Thanks for the amazing tools. 

I cannot understand however why is there no way to align tweens at START when you add them one by one. It would be so intuitive to have something like

timelineMax.align = ALIGN_START
timelineMax.appendTween(...
timelineMax.start();

Have you ever though of that?</description>
		<content:encoded><![CDATA[<p>Hello man. Thanks for the amazing tools. </p>
<p>I cannot understand however why is there no way to align tweens at START when you add them one by one. It would be so intuitive to have something like</p>
<p>timelineMax.align = ALIGN_START<br />
timelineMax.appendTween(&#8230;<br />
timelineMax.start();</p>
<p>Have you ever though of that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashmode</title>
		<link>http://www.greensock.com/timelinemax/comment-page-1/#comment-18936</link>
		<dc:creator>Flashmode</dc:creator>
		<pubDate>Tue, 09 Nov 2010 00:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=813#comment-18936</guid>
		<description>Very usefull tool, thx</description>
		<content:encoded><![CDATA[<p>Very usefull tool, thx</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.greensock.com @ 2012-02-09 07:59:07 -->
