<?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: TweenFilterLite (AS3 Version) - Easily Tween Filters &#038; Image Effects</title>
	<atom:link href="http://blog.greensock.com/tweenfilterliteas3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.greensock.com/tweenfilterliteas3/</link>
	<description>ActionScript Enthusaist</description>
	<pubDate>Fri, 16 May 2008 22:53:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: brroy</title>
		<link>http://blog.greensock.com/tweenfilterliteas3/#comment-17524</link>
		<dc:creator>brroy</dc:creator>
		<pubDate>Mon, 12 May 2008 15:25:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/tweenfilterliteas3/#comment-17524</guid>
		<description>I’ve been looking for a solid animation package to accompany AS3 projects and I think I’ve finally found it. Kudos on your work!

helipross.com</description>
		<content:encoded><![CDATA[<p>I’ve been looking for a solid animation package to accompany AS3 projects and I think I’ve finally found it. Kudos on your work!</p>
<p>helipross.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erich</title>
		<link>http://blog.greensock.com/tweenfilterliteas3/#comment-17422</link>
		<dc:creator>Erich</dc:creator>
		<pubDate>Thu, 08 May 2008 17:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/tweenfilterliteas3/#comment-17422</guid>
		<description>Jack, thanks for creating these great classes. You've saved me hours of time. If you're ever in Chicago, I owe you a beer.</description>
		<content:encoded><![CDATA[<p>Jack, thanks for creating these great classes. You&#8217;ve saved me hours of time. If you&#8217;re ever in Chicago, I owe you a beer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lauren</title>
		<link>http://blog.greensock.com/tweenfilterliteas3/#comment-16878</link>
		<dc:creator>Lauren</dc:creator>
		<pubDate>Sun, 20 Apr 2008 20:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/tweenfilterliteas3/#comment-16878</guid>
		<description>Thanks for providing this! Fantastic tool.</description>
		<content:encoded><![CDATA[<p>Thanks for providing this! Fantastic tool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jack</title>
		<link>http://blog.greensock.com/tweenfilterliteas3/#comment-16314</link>
		<dc:creator>jack</dc:creator>
		<pubDate>Fri, 04 Apr 2008 04:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/tweenfilterliteas3/#comment-16314</guid>
		<description>Nicolas, you can definitely create the effect you're looking for using the ColorTransformProxy utility class I created for use in conjunction with TweenLite for tweening all the various ColorTransform-related properties, including redOffset, greenOffset, blueOffset, redMultiplier, greenMultiplier, blueMultiplier, tint, and even tintPercent and brightness!. Sign up for Club GreenSock and you'll get that class as a bonus (as well as a TrasnformMatrixProxy class). See http://blog.greensock.com/club/ for details.</description>
		<content:encoded><![CDATA[<p>Nicolas, you can definitely create the effect you&#8217;re looking for using the ColorTransformProxy utility class I created for use in conjunction with TweenLite for tweening all the various ColorTransform-related properties, including redOffset, greenOffset, blueOffset, redMultiplier, greenMultiplier, blueMultiplier, tint, and even tintPercent and brightness!. Sign up for Club GreenSock and you&#8217;ll get that class as a bonus (as well as a TrasnformMatrixProxy class). See <a href="http://blog.greensock.com/club/" rel="nofollow">http://blog.greensock.com/club/</a> for details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolas</title>
		<link>http://blog.greensock.com/tweenfilterliteas3/#comment-16258</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Thu, 03 Apr 2008 10:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/tweenfilterliteas3/#comment-16258</guid>
		<description>How i can dublicate effect like flash bulb. It is simple in Tweener.
Tweener.addTween(_loader,{_color_rb:255, _color_gb:255, _color_bb:255, time:1, transition:"easeOutQuad"});

I try use brightness with param 3  but result is poor for me.</description>
		<content:encoded><![CDATA[<p>How i can dublicate effect like flash bulb. It is simple in Tweener.<br />
Tweener.addTween(_loader,{_color_rb:255, _color_gb:255, _color_bb:255, time:1, transition:&#8221;easeOutQuad&#8221;});</p>
<p>I try use brightness with param 3  but result is poor for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://blog.greensock.com/tweenfilterliteas3/#comment-15036</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Thu, 13 Mar 2008 07:32:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.greensock.com/tweenfilterliteas3/#comment-15036</guid>
		<description>John:
Or you could just randomize the "hue" color parameter which is handily a 0-360 scale in TweenFilterLite:

theHue = (Math.round(Math.random() * 360)) ;
TweenFilterLite.to(my_mc, 2, {colorMatrixFilter:{amount:1, hue:theHue}});

You can enhance the effect with the brightness parameter as well (-1 to 1 scale). Very cool result with sky images.
--Tony</description>
		<content:encoded><![CDATA[<p>John:<br />
Or you could just randomize the &#8220;hue&#8221; color parameter which is handily a 0-360 scale in TweenFilterLite:</p>
<p>theHue = (Math.round(Math.random() * 360)) ;<br />
TweenFilterLite.to(my_mc, 2, {colorMatrixFilter:{amount:1, hue:theHue}});</p>
<p>You can enhance the effect with the brightness parameter as well (-1 to 1 scale). Very cool result with sky images.<br />
&#8211;Tony</p>
]]></content:encoded>
	</item>
</channel>
</rss>
