<?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: A little bit about Sound &#124; Using the Sound, SoundChannel, SoundTransform classes</title>
	<atom:link href="http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/</link>
	<description>Flash, ActionScript, SEO and everything in between</description>
	<lastBuildDate>Sat, 04 Feb 2012 08:16:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: gefg</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-8341</link>
		<dc:creator>gefg</dc:creator>
		<pubDate>Wed, 12 Oct 2011 06:57:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-8341</guid>
		<description>You spelled SoundTransform wrong buddy</description>
		<content:encoded><![CDATA[<p>You spelled SoundTransform wrong buddy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kat</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-7662</link>
		<dc:creator>kat</dc:creator>
		<pubDate>Wed, 27 Jul 2011 00:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-7662</guid>
		<description>Need help with the SoundChannel.  I have 2 movie clip that serves as buttons. These buttons will play 2 different external sound files.

Here is my code:

mcNext.buttonMode = true;

var mySound:Sound = new Sound();
var myChannel:SoundChannel = new SoundChannel();
mySound.load(new URLRequest(&quot;audio1.mp3&quot;));
myChannel = mySound.play();
mcNext.addEventListener(MouseEvent.CLICK, mcCLICK);
function mcCLICK(event:MouseEvent):void{
	myChannel.stop();
	var mySound2:Sound = new Sound();
	var myChannel2:SoundChannel = new SoundChannel();
	mySound2.load(new URLRequest(&quot;audio4.mp3&quot;));
	myChannel2 = mySound2.play();
}
mcBack.addEventListener(MouseEvent.CLICK, mcClick2);
function mcClick2(event:MouseEvent):void{
	myChannel2.stop();
	var mySound1:Sound = new Sound();
	mySound1.load(new URLRequest(&quot;audio4.mp3&quot;));
	mySound1.play();
}


I got this error 1120:Access of Undefined property myChannel2 in myChannel2.stop();

What should i do? Please help. 
Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Need help with the SoundChannel.  I have 2 movie clip that serves as buttons. These buttons will play 2 different external sound files.</p>
<p>Here is my code:</p>
<p>mcNext.buttonMode = true;</p>
<p>var mySound:Sound = new Sound();<br />
var myChannel:SoundChannel = new SoundChannel();<br />
mySound.load(new URLRequest(&#8220;audio1.mp3&#8243;));<br />
myChannel = mySound.play();<br />
mcNext.addEventListener(MouseEvent.CLICK, mcCLICK);<br />
function mcCLICK(event:MouseEvent):void{<br />
	myChannel.stop();<br />
	var mySound2:Sound = new Sound();<br />
	var myChannel2:SoundChannel = new SoundChannel();<br />
	mySound2.load(new URLRequest(&#8220;audio4.mp3&#8243;));<br />
	myChannel2 = mySound2.play();<br />
}<br />
mcBack.addEventListener(MouseEvent.CLICK, mcClick2);<br />
function mcClick2(event:MouseEvent):void{<br />
	myChannel2.stop();<br />
	var mySound1:Sound = new Sound();<br />
	mySound1.load(new URLRequest(&#8220;audio4.mp3&#8243;));<br />
	mySound1.play();<br />
}</p>
<p>I got this error 1120:Access of Undefined property myChannel2 in myChannel2.stop();</p>
<p>What should i do? Please help.<br />
Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-6256</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 15 Mar 2011 16:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-6256</guid>
		<description>Thanks this was very helpful!</description>
		<content:encoded><![CDATA[<p>Thanks this was very helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted Kusio</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-5780</link>
		<dc:creator>Ted Kusio</dc:creator>
		<pubDate>Tue, 28 Dec 2010 21:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-5780</guid>
		<description>Just came across your site and found a code typo.

In the first SoundTransform code sample, you have:
var someTransform:SoundTransfrom = new SoundTransform(0.5); // the 0.5 value here tells it to set volume to half the maximum value

I think you mean someTransform:SoundTransform instead of var someTransform:SoundTransfrom...
:)

Otherwise GREAT, clear overview. Thanks!</description>
		<content:encoded><![CDATA[<p>Just came across your site and found a code typo.</p>
<p>In the first SoundTransform code sample, you have:<br />
var someTransform:SoundTransfrom = new SoundTransform(0.5); // the 0.5 value here tells it to set volume to half the maximum value</p>
<p>I think you mean someTransform:SoundTransform instead of var someTransform:SoundTransfrom&#8230;<br />
 <img src='http://www.zedia.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Otherwise GREAT, clear overview. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AS程序员实用工具类 ｜ 鸡毛一样飞。。</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-5700</link>
		<dc:creator>AS程序员实用工具类 ｜ 鸡毛一样飞。。</dc:creator>
		<pubDate>Mon, 13 Dec 2010 10:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-5700</guid>
		<description>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类 [...]</description>
		<content:encoded><![CDATA[<p>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 6款与声音有关的类 &#124; ChinemitBlog</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-5576</link>
		<dc:creator>6款与声音有关的类 &#124; ChinemitBlog</dc:creator>
		<pubDate>Tue, 09 Nov 2010 16:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-5576</guid>
		<description>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类   Read more from ActionScript ActionScript        Click here to cancel reply. [...]</description>
		<content:encoded><![CDATA[<p>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类   Read more from ActionScript ActionScript        Click here to cancel reply. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [AS3] About Sound &#171; CODE@蝴蝶。夢</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-5526</link>
		<dc:creator>[AS3] About Sound &#171; CODE@蝴蝶。夢</dc:creator>
		<pubDate>Tue, 19 Oct 2010 17:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-5526</guid>
		<description>[...] http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-class...  Filed under: 編程 Leave a comment     Comments (0) Trackbacks (0) ( subscribe to comments on this post ) [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-class.." rel="nofollow">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-class..</a>.  Filed under: 編程 Leave a comment     Comments (0) Trackbacks (0) ( subscribe to comments on this post ) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 火柴工作坊 &#187; AS程序员实用工具类</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-5443</link>
		<dc:creator>火柴工作坊 &#187; AS程序员实用工具类</dc:creator>
		<pubDate>Mon, 20 Sep 2010 06:20:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-5443</guid>
		<description>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类 [...]</description>
		<content:encoded><![CDATA[<p>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AS程序员实用工具类 &#124; ヤ蚂蚁的幸福ヤ</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-5367</link>
		<dc:creator>AS程序员实用工具类 &#124; ヤ蚂蚁的幸福ヤ</dc:creator>
		<pubDate>Sun, 15 Aug 2010 08:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-5367</guid>
		<description>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类 [...]</description>
		<content:encoded><![CDATA[<p>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AS程序员实用工具类 － Ase7en’Blog</title>
		<link>http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/comment-page-1/#comment-5128</link>
		<dc:creator>AS程序员实用工具类 － Ase7en’Blog</dc:creator>
		<pubDate>Sun, 16 May 2010 16:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/a-little-bit-about-sound-using-the-sound-soundchannel-soundtransform-classes/#comment-5128</guid>
		<description>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类 [...]</description>
		<content:encoded><![CDATA[<p>[...] Using the Sound, SoundChannel, SoundTransform classes 正如你所见，这篇东东谈的是如何使用Sound, SoundChannel, SoundTransform类 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

