<?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: Aborting Flex 2 Effects	</title>
	<atom:link href="https://jessewarden.com/2007/03/aborting-flex-2-effects.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2007/03/aborting-flex-2-effects.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Tue, 13 May 2008 07:43:14 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Travis		</title>
		<link>https://jessewarden.com/2007/03/aborting-flex-2-effects.html/comment-page-1#comment-83827</link>

		<dc:creator><![CDATA[Travis]]></dc:creator>
		<pubDate>Tue, 13 May 2008 07:43:14 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1139#comment-83827</guid>

					<description><![CDATA[Just a side note if anyone else comes here looking to basically send any effects to a screaming halt. If you have two effects one for fadeIn and one for fade Out, when you are setting the visibilities of the component most can call .endEffectsStarted() which will end any current effects and begin the new ones.]]></description>
			<content:encoded><![CDATA[<p>Just a side note if anyone else comes here looking to basically send any effects to a screaming halt. If you have two effects one for fadeIn and one for fade Out, when you are setting the visibilities of the component most can call .endEffectsStarted() which will end any current effects and begin the new ones.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tink		</title>
		<link>https://jessewarden.com/2007/03/aborting-flex-2-effects.html/comment-page-1#comment-4190</link>

		<dc:creator><![CDATA[Tink]]></dc:creator>
		<pubDate>Sun, 11 Mar 2007 21:35:08 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1139#comment-4190</guid>

					<description><![CDATA[No worries bud, glad it was useful.


]]></description>
			<content:encoded><![CDATA[<p>No worries bud, glad it was useful.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2007/03/aborting-flex-2-effects.html/comment-page-1#comment-4189</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Sun, 11 Mar 2007 20:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1139#comment-4189</guid>

					<description><![CDATA[You&#039;re not missing anything Tink.  I have a deadline of Friday, am coding at mach-2 with little regard to optimization, and haven&#039;t had anyone take a look at my code.  So, thanks for taking the time to do so!]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re not missing anything Tink.  I have a deadline of Friday, am coding at mach-2 with little regard to optimization, and haven&#8217;t had anyone take a look at my code.  So, thanks for taking the time to do so!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tink		</title>
		<link>https://jessewarden.com/2007/03/aborting-flex-2-effects.html/comment-page-1#comment-4188</link>

		<dc:creator><![CDATA[Tink]]></dc:creator>
		<pubDate>Sun, 11 Mar 2007 20:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1139#comment-4188</guid>

					<description><![CDATA[Hmm removed my MXML :(

also
searchMove.isPlaying

should be

myFade.isPlaying]]></description>
			<content:encoded><![CDATA[<p>Hmm removed my MXML :(</p>
<p>also<br />
searchMove.isPlaying</p>
<p>should be</p>
<p>myFade.isPlaying</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tink		</title>
		<link>https://jessewarden.com/2007/03/aborting-flex-2-effects.html/comment-page-1#comment-4187</link>

		<dc:creator><![CDATA[Tink]]></dc:creator>
		<pubDate>Sun, 11 Mar 2007 20:37:23 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1139#comment-4187</guid>

					<description><![CDATA[Maybe I&#039;m missing something, but I&#039;m not sure why your taking this apporach. You can just check the isPlaying property, and if its is playing invoked reverse(). If it aint playing, set the alphaTo, and play the effect.

&#060;mx:Script&#062;&lt;br /&gt;
&#160; &#160;&#060;![CDATA[&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;private function set show( value:Boolean ):void
{
        if( myFade.isPlaying )
        {
                myFade.reverse();
        }
        else
        {
                myFade.xTo = ( value ) ? 100 : 0;
                myFade.play();
        }
}
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&#160; &#160;]]&#062;&lt;br /&gt;
&#060;/mx:Script&#062;&lt;br /&gt;
&lt;br /&gt;
&#060;mx:Fade id=&#039;myFade&#039; target=&#039;{myComponent}&#039; duration=&#039;500&#039;/&#062;&lt;br /&gt;&lt;br /&gt;]]></description>
			<content:encoded><![CDATA[<p>Maybe I&#8217;m missing something, but I&#8217;m not sure why your taking this apporach. You can just check the isPlaying property, and if its is playing invoked reverse(). If it aint playing, set the alphaTo, and play the effect.</p>
<p>&lt;mx:Script&gt;<br />
&nbsp; &nbsp;&lt;![CDATA[</p>
<pre>private function set show( value:Boolean ):void
{
        if( myFade.isPlaying )
        {
                myFade.reverse();
        }
        else
        {
                myFade.xTo = ( value ) ? 100 : 0;
                myFade.play();
        }
}
</pre>
<p>&nbsp; &nbsp;]]&gt;<br />
&lt;/mx:Script&gt;</p>
<p>&lt;mx:Fade id=&#8217;myFade&#8217; target='{myComponent}&#8217; duration=&#8217;500&#8217;/&gt;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
