<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: How to Adjust the Audio Portion of Flash Video</title>
	<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio</link>
	<description>Luck is the residue of good design.</description>
	<pubDate>Tue, 06 Jan 2009 09:58:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>

	<item>
		<title>by: David Stiller</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-110923</link>
		<pubDate>Tue, 11 Dec 2007 20:26:28 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-110923</guid>
					<description>Chris,

The only thing trick to doing something like this with a loaded SWF is to know the object reference to the video player inside that SWF.  If you use the Debugger panel, you can see all your objects in a hierarchical tree view on the left side ... let should give you all the pathing info you'll need.  You'll name the movie clip container that holds your loaded SWF, and then you'll path do the instance name of the Video object or component that displays your video.</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>The only thing trick to doing something like this with a loaded SWF is to know the object reference to the video player inside that SWF.  If you use the Debugger panel, you can see all your objects in a hierarchical tree view on the left side &#8230; let should give you all the pathing info you&#8217;ll need.  You&#8217;ll name the movie clip container that holds your loaded SWF, and then you&#8217;ll path do the instance name of the Video object or component that displays your video.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Chris</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-110919</link>
		<pubDate>Tue, 11 Dec 2007 20:05:37 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-110919</guid>
					<description>Hello David-  is there a way to control the volume with a slider that is in a different SWF?</description>
		<content:encoded><![CDATA[<p>Hello David-  is there a way to control the volume with a slider that is in a different SWF?
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: David Stiller</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-94728</link>
		<pubDate>Sun, 28 Oct 2007 02:17:28 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-94728</guid>
					<description>Alex,

Your &lt;code&gt;if&lt;/code&gt; statement should be checking of the video's volume is 0 &amp;#8212; I'm almost certain that's what you mean &amp;#8212; but you're using the &lt;code&gt;Sound.setVolume()&lt;/code&gt; method (instead of &lt;code&gt;getVolume()&lt;/code&gt;) inside your &lt;code&gt;if&lt;/code&gt; statement.</description>
		<content:encoded><![CDATA[<p>Alex,</p>
<p>Your <code>if</code> statement should be checking of the video&#8217;s volume is 0 &mdash; I&#8217;m almost certain that&#8217;s what you mean &mdash; but you&#8217;re using the <code>Sound.setVolume()</code> method (instead of <code>getVolume()</code>) inside your <code>if</code> statement.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: alex</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-94159</link>
		<pubDate>Fri, 26 Oct 2007 15:30:57 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-94159</guid>
					<description>Hi,

Im trying to make a on/off sound button with the four lines of code.

But it doesn t work........


here's  my code: 

Someone could help me with that please?

btn1_bt.onRelease = function() {

	
	if(videoVolume.setVolume(0))
	{
		videoVolume.setVolume(50);
		
		}else{
			
				videoVolume.setVolume(0);
			}
	

};



thanks
Alex</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Im trying to make a on/off sound button with the four lines of code.</p>
<p>But it doesn t work&#8230;&#8230;..</p>
<p>here&#8217;s  my code: </p>
<p>Someone could help me with that please?</p>
<p>btn1_bt.onRelease = function() {</p>
<p>	if(videoVolume.setVolume(0))<br />
	{<br />
		videoVolume.setVolume(50);</p>
<p>		}else{</p>
<p>				videoVolume.setVolume(0);<br />
			}</p>
<p>};</p>
<p>thanks<br />
Alex
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: David Stiller</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-90545</link>
		<pubDate>Fri, 12 Oct 2007 18:45:50 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-90545</guid>
					<description>rob,

Thanks!</description>
		<content:encoded><![CDATA[<p>rob,</p>
<p>Thanks!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: rob watkins</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-90544</link>
		<pubDate>Fri, 12 Oct 2007 18:34:39 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-90544</guid>
					<description>thanks for this useful advice loading swf's are easy this is just what i needed and it makes sense. well done. :)</description>
		<content:encoded><![CDATA[<p>thanks for this useful advice loading swf&#8217;s are easy this is just what i needed and it makes sense. well done. <img src='http://www.quip.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: David Stiller</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-86080</link>
		<pubDate>Thu, 27 Sep 2007 15:10:35 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-86080</guid>
					<description>Chad,

You're welcome!</description>
		<content:encoded><![CDATA[<p>Chad,</p>
<p>You&#8217;re welcome!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Chad</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-81932</link>
		<pubDate>Sun, 16 Sep 2007 05:25:19 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-81932</guid>
					<description>thanks so much for this article!</description>
		<content:encoded><![CDATA[<p>thanks so much for this article!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: David Stiller</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-66642</link>
		<pubDate>Mon, 23 Jul 2007 12:49:10 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-66642</guid>
					<description>kweku,

That'll be my next blog tutorial.  :)</description>
		<content:encoded><![CDATA[<p>kweku,</p>
<p>That&#8217;ll be my next blog tutorial.  <img src='http://www.quip.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: kweku</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-66627</link>
		<pubDate>Mon, 23 Jul 2007 10:02:49 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-adjust-video-audio#comment-66627</guid>
					<description>hi David,

what if i want to control the volume with a slider? thanks</description>
		<content:encoded><![CDATA[<p>hi David,</p>
<p>what if i want to control the volume with a slider? thanks
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
