how can I adjust volume in my program? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T04:00:38Z http://stackoverflow.com/feeds/question/1081675 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081675/how-can-i-adjust-volume-in-my-program 0 how can I adjust volume in my program? jafar 2009-07-04T06:39:11Z 2009-07-04T21:31:58Z <p>I'm creating an audio player program in HTML and Javascript. How can I adjust the volume in my program?</p> http://stackoverflow.com/questions/1081675/how-can-i-adjust-volume-in-my-program/1081734#1081734 1 Answer by DR for how can I adjust volume in my program? DR 2009-07-04T07:34:46Z 2009-07-04T07:34:46Z <p>Changing the volumne requires access to the operating system's audio device driver or some abstraction layer.</p> <p>The only way to change the volume is on Windows using ActiveX. </p> http://stackoverflow.com/questions/1081675/how-can-i-adjust-volume-in-my-program/1083010#1083010 0 Answer by thezachperson31 for how can I adjust volume in my program? thezachperson31 2009-07-04T21:31:58Z 2009-07-04T21:31:58Z <p>I'll assume that you're relying on the browser's default plugin to play the audio files. If you're using WMP through object elements, then you could dynamically change the settings using javascript. </p> <pre><code>// get the element's DOM reference, replace to fit needs obj = document.getElementById("player"); // set volume, 0=mute, 100=full obj.Settings.volume = 50; </code></pre> <p>Combine that with a slider widget (i.e. <a href="http://jqueryui.com/" rel="nofollow">jQuery UI</a>), and that should work. </p> <p>reference: <a href="http://www.mioplanet.com/rsc/embed%5Fmediaplayer.htm" rel="nofollow">http://www.mioplanet.com/rsc/embed_mediaplayer.htm</a></p>