<?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"
	>
<channel>
	<title>Comments on: TweenLite (AS2) - A Lightweight (3k) and FAST Tweening Engine</title>
	<atom:link href="http://blog.greensock.com/tweenliteas2/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.greensock.com/tweenliteas2/</link>
	<description>ActionScript Enthusaist</description>
	<pubDate>Sun,  6 Jul 2008 19:40:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: jakubt</title>
		<link>http://blog.greensock.com/tweenliteas2/#comment-16895</link>
		<dc:creator>jakubt</dc:creator>
		<pubDate>Mon, 21 Apr 2008 16:22:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=6#comment-16895</guid>
		<description>thanks a lot for this nice small script! I just had to cut client`s banner 10K down - done in ten minutes including googling for your site : -)</description>
		<content:encoded><![CDATA[<p>thanks a lot for this nice small script! I just had to cut client`s banner 10K down - done in ten minutes including googling for your site : -)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Soret</title>
		<link>http://blog.greensock.com/tweenliteas2/#comment-16183</link>
		<dc:creator>Tim Soret</dc:creator>
		<pubDate>Wed, 02 Apr 2008 14:53:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=6#comment-16183</guid>
		<description>Perfect. And only 24 min after the question.
I'll make a donation tonight, you really deserve it.</description>
		<content:encoded><![CDATA[<p>Perfect. And only 24 min after the question.<br />
I&#8217;ll make a donation tonight, you really deserve it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jack</title>
		<link>http://blog.greensock.com/tweenliteas2/#comment-16182</link>
		<dc:creator>jack</dc:creator>
		<pubDate>Wed, 02 Apr 2008 14:40:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=6#comment-16182</guid>
		<description>Tim, all you need to do to treat your variables as strings is wrap them in "String()", like this:

TweenLite.to(string_spark,0.2,{_x:String(spark_move)});</description>
		<content:encoded><![CDATA[<p>Tim, all you need to do to treat your variables as strings is wrap them in &#8220;String()&#8221;, like this:</p>
<p>TweenLite.to(string_spark,0.2,{_x:String(spark_move)});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Soret</title>
		<link>http://blog.greensock.com/tweenliteas2/#comment-16181</link>
		<dc:creator>Tim Soret</dc:creator>
		<pubDate>Wed, 02 Apr 2008 14:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=6#comment-16181</guid>
		<description>Hi Jack.
I use your tween class in every project (I should pay royalties :P), and it works perfectly in most cases. But this time, I'm stuck with a simple, little, but annoying problem :

I need to tween various properties of hundred of movieclips with random values. As usual, it works perfectly, but I can't use a variable as a relative value. Let me show you the AS2 code excerpt :

// Here are my random values
		spark_size = Math.round(Math.random()*50)+50;
		spark_alpha = Math.round(Math.random()*50)+30;
		spark_rotation = Math.round(Math.random()*360);
		spark_move = Math.round(Math.random()*10);

// Here is the tween, using these variables
		TweenLite.to(string_spark,0.2,{_x:"spark_move", _alpha:spark_alpha, _rotation:spark_rotation, _xscale:spark_size, _yscale:spark_size, overwrite:false});
	}

As you can see, i just want to wiggle my sparks using random relative values, using the spark_move variable. But the quotation marks don't enable me to use a variable, only integers.

If you have any idea that can solve this issue...
Many thanks.</description>
		<content:encoded><![CDATA[<p>Hi Jack.<br />
I use your tween class in every project (I should pay royalties :P), and it works perfectly in most cases. But this time, I&#8217;m stuck with a simple, little, but annoying problem :</p>
<p>I need to tween various properties of hundred of movieclips with random values. As usual, it works perfectly, but I can&#8217;t use a variable as a relative value. Let me show you the AS2 code excerpt :</p>
<p>// Here are my random values<br />
		spark_size = Math.round(Math.random()*50)+50;<br />
		spark_alpha = Math.round(Math.random()*50)+30;<br />
		spark_rotation = Math.round(Math.random()*360);<br />
		spark_move = Math.round(Math.random()*10);</p>
<p>// Here is the tween, using these variables<br />
		TweenLite.to(string_spark,0.2,{_x:&#8221;spark_move&#8221;, _alpha:spark_alpha, _rotation:spark_rotation, _xscale:spark_size, _yscale:spark_size, overwrite:false});<br />
	}</p>
<p>As you can see, i just want to wiggle my sparks using random relative values, using the spark_move variable. But the quotation marks don&#8217;t enable me to use a variable, only integers.</p>
<p>If you have any idea that can solve this issue&#8230;<br />
Many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Willem-Paul</title>
		<link>http://blog.greensock.com/tweenliteas2/#comment-15498</link>
		<dc:creator>Willem-Paul</dc:creator>
		<pubDate>Thu, 20 Mar 2008 15:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=6#comment-15498</guid>
		<description>Awesome little devil this library. Very nice you included the source as well. Just made a donation, keep up the good work!</description>
		<content:encoded><![CDATA[<p>Awesome little devil this library. Very nice you included the source as well. Just made a donation, keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jack</title>
		<link>http://blog.greensock.com/tweenliteas2/#comment-15337</link>
		<dc:creator>jack</dc:creator>
		<pubDate>Mon, 17 Mar 2008 16:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/?p=6#comment-15337</guid>
		<description>szataniol, in order to keep file size down, TweenLite doesn't have an "isTweening" feature, but TweenMax does! Check out www.TweenMax.com</description>
		<content:encoded><![CDATA[<p>szataniol, in order to keep file size down, TweenLite doesn&#8217;t have an &#8220;isTweening&#8221; feature, but TweenMax does! Check out <a href="http://www.TweenMax.com" rel="nofollow" onclick="javascript:urchinTracker ('/outbound/comment/www.TweenMax.com');">http://www.TweenMax.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
