<?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: Suspended tween in Flash</title>
	<atom:link href="http://www.muktosoft.com/suspended-tween-in-flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.muktosoft.com/suspended-tween-in-flash/</link>
	<description></description>
	<lastBuildDate>Mon, 26 Jul 2010 13:02:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Daniel Norman</title>
		<link>http://www.muktosoft.com/suspended-tween-in-flash/comment-page-1/#comment-1127</link>
		<dc:creator>Daniel Norman</dc:creator>
		<pubDate>Thu, 28 Jan 2010 11:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.muktosoft.com/?p=46#comment-1127</guid>
		<description>Mate, that is solid gold. Thank you for posting such an elegant and simple solution to a very, VERY annoying problem!</description>
		<content:encoded><![CDATA[<p>Mate, that is solid gold. Thank you for posting such an elegant and simple solution to a very, VERY annoying problem!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilbert Rios</title>
		<link>http://www.muktosoft.com/suspended-tween-in-flash/comment-page-1/#comment-1052</link>
		<dc:creator>Gilbert Rios</dc:creator>
		<pubDate>Wed, 13 Jan 2010 00:59:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.muktosoft.com/?p=46#comment-1052</guid>
		<description>Raiyan, many thanks for the email and posting. After reading your response, I had a &#039;duh&#039; moment (smile). Removing the looping line did the trick. Much appreciated!  /g</description>
		<content:encoded><![CDATA[<p>Raiyan, many thanks for the email and posting. After reading your response, I had a &#8216;duh&#8217; moment (smile). Removing the looping line did the trick. Much appreciated!  /g</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amira</title>
		<link>http://www.muktosoft.com/suspended-tween-in-flash/comment-page-1/#comment-1041</link>
		<dc:creator>Amira</dc:creator>
		<pubDate>Mon, 11 Jan 2010 01:32:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.muktosoft.com/?p=46#comment-1041</guid>
		<description>Thank You very much :D</description>
		<content:encoded><![CDATA[<p>Thank You very much <img src='http://www.muktosoft.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raiyan</title>
		<link>http://www.muktosoft.com/suspended-tween-in-flash/comment-page-1/#comment-1005</link>
		<dc:creator>Raiyan</dc:creator>
		<pubDate>Wed, 06 Jan 2010 18:25:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.muktosoft.com/?p=46#comment-1005</guid>
		<description>Hello Gilbert Rios,
Haven&#039;t compiled your code yet, just telling you what I can find from a glance at it.

The second line inside the loop is:

tweenArray.looping = false;

tweenArray is an array, it does not have the looping property. Let us remove this line and see what happens.</description>
		<content:encoded><![CDATA[<p>Hello Gilbert Rios,<br />
Haven&#8217;t compiled your code yet, just telling you what I can find from a glance at it.</p>
<p>The second line inside the loop is:</p>
<p>tweenArray.looping = false;</p>
<p>tweenArray is an array, it does not have the looping property. Let us remove this line and see what happens.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilbert Rios</title>
		<link>http://www.muktosoft.com/suspended-tween-in-flash/comment-page-1/#comment-806</link>
		<dc:creator>Gilbert Rios</dc:creator>
		<pubDate>Mon, 14 Dec 2009 00:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.muktosoft.com/?p=46#comment-806</guid>
		<description>Hello there! I came across your blog and was grateful, as I&#039;ve recently pulled my hair out trying to figure out this tween issue. I&#039;m trying to adapt your code so it affects the alpha of my one and only imageLoader. Below is my attempt (apologies in advance, but I&#039;m a newbie!) Unfortunately, the image won&#039;t even load. And when I change &#039;Tween(imageLoader&#039; to &#039;Tween(imageLoader[j]&#039;, like in your original solution, Flash says that &#039;Property 0 isn&#039;t found and there is no default value.&#039;

		var tweenArray:Array = new Array();
		for (var j:int = 0; j &lt; 2; j++)
		{	var imageLoaderTween:Tween = new Tween(imageLoader, &quot;alpha&quot;, Regular.easeOut, 0, 1, 4, true);
			tweenArray.looping = false;
			tweenArray.push(imageLoaderTween);
		}

Any advice you can offer would be appreciated !</description>
		<content:encoded><![CDATA[<p>Hello there! I came across your blog and was grateful, as I&#8217;ve recently pulled my hair out trying to figure out this tween issue. I&#8217;m trying to adapt your code so it affects the alpha of my one and only imageLoader. Below is my attempt (apologies in advance, but I&#8217;m a newbie!) Unfortunately, the image won&#8217;t even load. And when I change &#8216;Tween(imageLoader&#8217; to &#8216;Tween(imageLoader[j]&#8216;, like in your original solution, Flash says that &#8216;Property 0 isn&#8217;t found and there is no default value.&#8217;</p>
<p>		var tweenArray:Array = new Array();<br />
		for (var j:int = 0; j &lt; 2; j++)<br />
		{	var imageLoaderTween:Tween = new Tween(imageLoader, &#8220;alpha&#8221;, Regular.easeOut, 0, 1, 4, true);<br />
			tweenArray.looping = false;<br />
			tweenArray.push(imageLoaderTween);<br />
		}</p>
<p>Any advice you can offer would be appreciated !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donnieboy</title>
		<link>http://www.muktosoft.com/suspended-tween-in-flash/comment-page-1/#comment-431</link>
		<dc:creator>Donnieboy</dc:creator>
		<pubDate>Mon, 12 Oct 2009 11:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.muktosoft.com/?p=46#comment-431</guid>
		<description>Just wanted to drop you a line to say, I enjoy reading your site.  I thought about starting a blog myself but don&#039;t have the time.
Oh well maybe one day.... &lt;a HREF=&quot;http://fedora-commons.org/confluence/display/~susanbrooks&quot; rel=&quot;nofollow&quot;&gt; :)&lt;/A&gt;</description>
		<content:encoded><![CDATA[<p>Just wanted to drop you a line to say, I enjoy reading your site.  I thought about starting a blog myself but don&#8217;t have the time.<br />
Oh well maybe one day&#8230;. <a HREF="http://fedora-commons.org/confluence/display/~susanbrooks" rel="nofollow"> <img src='http://www.muktosoft.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alfred</title>
		<link>http://www.muktosoft.com/suspended-tween-in-flash/comment-page-1/#comment-245</link>
		<dc:creator>Alfred</dc:creator>
		<pubDate>Wed, 16 Sep 2009 15:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.muktosoft.com/?p=46#comment-245</guid>
		<description>Thank you Raiyan, for finding reason of the problem, for the beautiful solution and of course for sharing it!!!! You&#039;re a life savior! ;)</description>
		<content:encoded><![CDATA[<p>Thank you Raiyan, for finding reason of the problem, for the beautiful solution and of course for sharing it!!!! You&#8217;re a life savior! <img src='http://www.muktosoft.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
