<?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: Looping sounds in ActionScript 3</title>
	<atom:link href="http://thedevignpath.com/archives/36/feed" rel="self" type="application/rss+xml" />
	<link>http://thedevignpath.com/archives/36</link>
	<description>design + development = devign</description>
	<lastBuildDate>Thu, 03 Jun 2010 10:20:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: vinod</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-487</link>
		<dc:creator>vinod</dc:creator>
		<pubDate>Thu, 03 Jun 2010 10:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-487</guid>
		<description>really helpful one , also thanks to Everin.</description>
		<content:encoded><![CDATA[<p>really helpful one , also thanks to Everin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: redag</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-285</link>
		<dc:creator>redag</dc:creator>
		<pubDate>Sat, 09 Jan 2010 01:35:26 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-285</guid>
		<description>thank you so much, you helped me out a bunch with this!</description>
		<content:encoded><![CDATA[<p>thank you so much, you helped me out a bunch with this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iampeterbanjo</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-71</link>
		<dc:creator>iampeterbanjo</dc:creator>
		<pubDate>Sat, 17 Oct 2009 18:26:54 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-71</guid>
		<description>You&#039;re welcome.</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: callmewim</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-70</link>
		<dc:creator>callmewim</dc:creator>
		<pubDate>Sat, 17 Oct 2009 16:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-70</guid>
		<description>wow this is really work.. thaks alo...

thanks :)</description>
		<content:encoded><![CDATA[<p>wow this is really work.. thaks alo&#8230;</p>
<p>thanks <img src='http://thedevignpath.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iampeterbanjo</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-56</link>
		<dc:creator>iampeterbanjo</dc:creator>
		<pubDate>Fri, 25 Sep 2009 20:00:57 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-56</guid>
		<description>thanks for the feedback. :-)</description>
		<content:encoded><![CDATA[<p>thanks for the feedback. <img src='http://thedevignpath.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vincent</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-55</link>
		<dc:creator>vincent</dc:creator>
		<pubDate>Thu, 24 Sep 2009 09:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-55</guid>
		<description>ur explaintion is just too easy to understand, really help a lot in my project, keep it up ....thanks</description>
		<content:encoded><![CDATA[<p>ur explaintion is just too easy to understand, really help a lot in my project, keep it up &#8230;.thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan Clewett</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-51</link>
		<dc:creator>Jan Clewett</dc:creator>
		<pubDate>Mon, 14 Sep 2009 05:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-51</guid>
		<description>Thank you so much for this tutorial. Excellent.</description>
		<content:encoded><![CDATA[<p>Thank you so much for this tutorial. Excellent.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Everin</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-50</link>
		<dc:creator>Everin</dc:creator>
		<pubDate>Sun, 06 Sep 2009 22:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-50</guid>
		<description>To repeat the sound over and over  forever:

addEventListener(Event.SOUND_COMPLETE, repeat, false, 0, true);
function repeat(e:Event):void {
sc = music.play(0, int.MAX_VALUE);
}

In some case ( to avoid &quot;Cannot access a property or method of a null object reference&quot;) you need to add this code inside of if:

if (channel) {
//channel.addEventListener....etc.
}

Have a nice day,</description>
		<content:encoded><![CDATA[<p>To repeat the sound over and over  forever:</p>
<p>addEventListener(Event.SOUND_COMPLETE, repeat, false, 0, true);<br />
function repeat(e:Event):void {<br />
sc = music.play(0, int.MAX_VALUE);<br />
}</p>
<p>In some case ( to avoid &#8220;Cannot access a property or method of a null object reference&#8221;) you need to add this code inside of if:</p>
<p>if (channel) {<br />
//channel.addEventListener&#8230;.etc.<br />
}</p>
<p>Have a nice day,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nio</title>
		<link>http://thedevignpath.com/archives/36/comment-page-1#comment-40</link>
		<dc:creator>Nio</dc:creator>
		<pubDate>Wed, 22 Jul 2009 09:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://thedevignpath.com/archives/36#comment-40</guid>
		<description>Thanks, man!

It was really useful for me.

Only there is a little, for half of second interruption between the loops...</description>
		<content:encoded><![CDATA[<p>Thanks, man!</p>
<p>It was really useful for me.</p>
<p>Only there is a little, for half of second interruption between the loops&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
