<?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: TweenMax &#8211; TweenLite on Steroids</title>
	<atom:link href="http://www.greensock.com/tweenmax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.greensock.com/tweenmax/</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: Llyralei</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-33566</link>
		<dc:creator>Llyralei</dc:creator>
		<pubDate>Tue, 06 Dec 2011 21:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-33566</guid>
		<description>I pretty much did my entire senior project with TweenMax. You guys saved my life. Thank you so much for this!</description>
		<content:encoded><![CDATA[<p>I pretty much did my entire senior project with TweenMax. You guys saved my life. Thank you so much for this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-32196</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Wed, 19 Oct 2011 13:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-32196</guid>
		<description>this tool is awesome

no words, only goosebumps</description>
		<content:encoded><![CDATA[<p>this tool is awesome</p>
<p>no words, only goosebumps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dude</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-31712</link>
		<dc:creator>dude</dc:creator>
		<pubDate>Wed, 28 Sep 2011 02:50:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-31712</guid>
		<description>wow, so amazingly fantastic!</description>
		<content:encoded><![CDATA[<p>wow, so amazingly fantastic!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denny</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-31166</link>
		<dc:creator>Denny</dc:creator>
		<pubDate>Tue, 30 Aug 2011 18:47:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-31166</guid>
		<description>Hi Jack,

Thanks a bunch for the advice, I did it now this way:

import com.greensock.*;
import com.greensock.plugins.*; 

TweenPlugin.activate([ShortRotationPlugin]);
TweenMax.to(mc, 1, {shortRotation:{rotation:210}});</description>
		<content:encoded><![CDATA[<p>Hi Jack,</p>
<p>Thanks a bunch for the advice, I did it now this way:</p>
<p>import com.greensock.*;<br />
import com.greensock.plugins.*; </p>
<p>TweenPlugin.activate([ShortRotationPlugin]);<br />
TweenMax.to(mc, 1, {shortRotation:{rotation:210}});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-31165</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Tue, 30 Aug 2011 18:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-31165</guid>
		<description>Denny, that actually has nothing to do with TweenMax - it&#039;s just that Flash ALWAYS reports rotation values between -180 and 180. So let&#039;s say you start at rotation:0 and you rotate to 225. That&#039;s a total of 225 degrees that it changes during the tween. Now when that tween is done, TweenMax did in fact set rotation to 225 BUT Flash will report the rotation value as -135! You can reproduce this without TweenMax, like:

mc.rotation = 225;
trace(mc.rotation); //reports &quot;-135&quot;!

TweenMax.to() always tweens from the current value to the destination value (of course). So if you tween mc again to 225, TweenMax will say &quot;okay, what&#039;s  the current value?&quot; and it will get back -135. So that tween will go from -135 to 225 which is 360 degrees!

You can use the shortRotation plugin so that TweenMax always plots the SHORTEST direction to the new rotation value. That way, in your scenario it would stay still on the 2nd tween. See the Plugin Explorer for an interactive example.</description>
		<content:encoded><![CDATA[<p>Denny, that actually has nothing to do with TweenMax &#8211; it&#8217;s just that Flash ALWAYS reports rotation values between -180 and 180. So let&#8217;s say you start at rotation:0 and you rotate to 225. That&#8217;s a total of 225 degrees that it changes during the tween. Now when that tween is done, TweenMax did in fact set rotation to 225 BUT Flash will report the rotation value as -135! You can reproduce this without TweenMax, like:</p>
<p>mc.rotation = 225;<br />
trace(mc.rotation); //reports &#8220;-135&#8243;!</p>
<p>TweenMax.to() always tweens from the current value to the destination value (of course). So if you tween mc again to 225, TweenMax will say &#8220;okay, what&#8217;s  the current value?&#8221; and it will get back -135. So that tween will go from -135 to 225 which is 360 degrees!</p>
<p>You can use the shortRotation plugin so that TweenMax always plots the SHORTEST direction to the new rotation value. That way, in your scenario it would stay still on the 2nd tween. See the Plugin Explorer for an interactive example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denny</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-31152</link>
		<dc:creator>Denny</dc:creator>
		<pubDate>Tue, 30 Aug 2011 10:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-31152</guid>
		<description>Hi,
is it meant that there is differenced between 180 degr ?
How can I fix that?

e.g. try the example above with with rotation:45 and rotation:225
anf hit the button &quot;Tween&quot; some times.
45 -&gt; 1 rotation and than stop
225 -&gt; always rotating 360 degr

nevertheless NICE work guy :-)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
is it meant that there is differenced between 180 degr ?<br />
How can I fix that?</p>
<p>e.g. try the example above with with rotation:45 and rotation:225<br />
anf hit the button &#8220;Tween&#8221; some times.<br />
45 -&gt; 1 rotation and than stop<br />
225 -&gt; always rotating 360 degr</p>
<p>nevertheless NICE work guy <img src='http://www.greensock.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariel</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-30798</link>
		<dc:creator>Ariel</dc:creator>
		<pubDate>Tue, 16 Aug 2011 06:42:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-30798</guid>
		<description>Excellent!!   thank you so much!!!</description>
		<content:encoded><![CDATA[<p>Excellent!!   thank you so much!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gern</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-30584</link>
		<dc:creator>gern</dc:creator>
		<pubDate>Thu, 04 Aug 2011 14:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-30584</guid>
		<description>I can&#039;t sing your praises enough. This is superb!</description>
		<content:encoded><![CDATA[<p>I can&#8217;t sing your praises enough. This is superb!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rmevision</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-30332</link>
		<dc:creator>rmevision</dc:creator>
		<pubDate>Thu, 21 Jul 2011 13:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-30332</guid>
		<description>wow...great work.....thank you!</description>
		<content:encoded><![CDATA[<p>wow&#8230;great work&#8230;..thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://www.greensock.com/tweenmax/comment-page-2/#comment-30102</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Thu, 07 Jul 2011 18:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=16#comment-30102</guid>
		<description>Dude, seriously! THANK YOU!
Best $99 I ever spent!!!</description>
		<content:encoded><![CDATA[<p>Dude, seriously! THANK YOU!<br />
Best $99 I ever spent!!!</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:28:06 -->
