Script that allows microphone to test if there is sound












2















Is there a command that reads the level of sound a microphone is receiving?



I'm attempting to make a small program, that is referenced by HTML.



My main question is just how to get a script that can test true if mic input audio is above like 10%.



I notice that it could be done using html API's
with: var audioContext = new AudioContext();,
but how would I just test whether or not the mic is able to hear anything?



My end purpose is to incorporate all of this into an HTA










share|improve this question





























    2















    Is there a command that reads the level of sound a microphone is receiving?



    I'm attempting to make a small program, that is referenced by HTML.



    My main question is just how to get a script that can test true if mic input audio is above like 10%.



    I notice that it could be done using html API's
    with: var audioContext = new AudioContext();,
    but how would I just test whether or not the mic is able to hear anything?



    My end purpose is to incorporate all of this into an HTA










    share|improve this question



























      2












      2








      2


      1






      Is there a command that reads the level of sound a microphone is receiving?



      I'm attempting to make a small program, that is referenced by HTML.



      My main question is just how to get a script that can test true if mic input audio is above like 10%.



      I notice that it could be done using html API's
      with: var audioContext = new AudioContext();,
      but how would I just test whether or not the mic is able to hear anything?



      My end purpose is to incorporate all of this into an HTA










      share|improve this question
















      Is there a command that reads the level of sound a microphone is receiving?



      I'm attempting to make a small program, that is referenced by HTML.



      My main question is just how to get a script that can test true if mic input audio is above like 10%.



      I notice that it could be done using html API's
      with: var audioContext = new AudioContext();,
      but how would I just test whether or not the mic is able to hear anything?



      My end purpose is to incorporate all of this into an HTA







      audio script batch-file microphone vbscript






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 1 '18 at 4:42







      Logan Eldridge

















      asked Feb 26 '18 at 7:36









      Logan EldridgeLogan Eldridge

      113




      113






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Here is a whole example in HTA with vbscript :



          <html>
          <head>
          <HTA:APPLICATION
          APPLICATIONNAME="Volume + - ON/OFF"
          BORDER="THIN"
          BORDERSTYLE="NORMAL"
          ICON="SndVol.exe"
          INNERBORDER="NO"
          MAXIMIZEBUTTON="NO"
          MINIMIZEBUTTON="NO"
          SCROLL="NO"
          SELECTION="NO"
          SINGLEINSTANCE="YES"/>
          <title>Volume + - ON/OFF </title>
          <script language="vbscript">
          '************************************************************************************
          Sub window_onload()
          CenterWindow 250,150
          End Sub
          '************************************************************************************
          Sub Volume(Param)
          set oShell = CreateObject("WScript.Shell")
          Select Case Param
          Case "MAX"
          oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
          Case "MIN"
          oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
          Case "UP"
          oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
          Case "DOWN"
          oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
          Case "MUTE"
          oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
          End select
          End Sub
          '*************************************************************************************
          Sub Volume(Param1,Param2,Param3)
          set oShell = CreateObject("WScript.Shell")
          oShell.SendKeys Param1 & chr(Param2) & Param3
          '--------------------------- MEMO ----------------------------------
          'oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
          'oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
          'oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
          'oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
          'oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
          End Sub
          '*************************************************************************************
          Sub CenterWindow(x,y)
          Dim iLeft,itop
          window.resizeTo x,y
          iLeft = window.screen.availWidth/2 - x/2
          itop = window.screen.availHeight/2 - y/2
          window.moveTo ileft,itop
          End Sub
          '************************************************************************************
          </script>
          </head>
          <body>
          <center>
          <!--<BUTTON style="background: Red; color: white;" onClick="Call Volume('MAX')" style="WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
          <BUTTON style="background: Blue; color: white;" onClick="Call Volume('MIN')" style="WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
          <BUTTON style="background: Green; color: white;" onClick="Call Volume('UP')" style="WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
          <BUTTON style="background: Orange; color: white;" onClick="Call Volume('DOWN')" style="WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
          <BUTTON style="background: DarkOrange; color: white;" onClick="Call Volume('MUTE')" style="WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;-->
          <BUTTON onClick="Call Volume('{','175',' 50}')" style="background: Red; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
          <BUTTON onClick="Call Volume('{','174',' 50}')" style="background: Blue; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
          <BUTTON onClick="Call Volume('{','175',' 10}')" style="background: Green; color: white;WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
          <BUTTON onClick="Call Volume('{','174',' 10}')" style="background: Orange; color: white;WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
          <BUTTON onClick="Call Volume('','173','')" style="background: DarkOrange; color: white;WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;
          </center>
          </body>
          </html>





          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1298399%2fscript-that-allows-microphone-to-test-if-there-is-sound%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Here is a whole example in HTA with vbscript :



            <html>
            <head>
            <HTA:APPLICATION
            APPLICATIONNAME="Volume + - ON/OFF"
            BORDER="THIN"
            BORDERSTYLE="NORMAL"
            ICON="SndVol.exe"
            INNERBORDER="NO"
            MAXIMIZEBUTTON="NO"
            MINIMIZEBUTTON="NO"
            SCROLL="NO"
            SELECTION="NO"
            SINGLEINSTANCE="YES"/>
            <title>Volume + - ON/OFF </title>
            <script language="vbscript">
            '************************************************************************************
            Sub window_onload()
            CenterWindow 250,150
            End Sub
            '************************************************************************************
            Sub Volume(Param)
            set oShell = CreateObject("WScript.Shell")
            Select Case Param
            Case "MAX"
            oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
            Case "MIN"
            oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
            Case "UP"
            oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
            Case "DOWN"
            oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
            Case "MUTE"
            oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
            End select
            End Sub
            '*************************************************************************************
            Sub Volume(Param1,Param2,Param3)
            set oShell = CreateObject("WScript.Shell")
            oShell.SendKeys Param1 & chr(Param2) & Param3
            '--------------------------- MEMO ----------------------------------
            'oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
            'oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
            'oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
            'oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
            'oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
            End Sub
            '*************************************************************************************
            Sub CenterWindow(x,y)
            Dim iLeft,itop
            window.resizeTo x,y
            iLeft = window.screen.availWidth/2 - x/2
            itop = window.screen.availHeight/2 - y/2
            window.moveTo ileft,itop
            End Sub
            '************************************************************************************
            </script>
            </head>
            <body>
            <center>
            <!--<BUTTON style="background: Red; color: white;" onClick="Call Volume('MAX')" style="WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
            <BUTTON style="background: Blue; color: white;" onClick="Call Volume('MIN')" style="WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
            <BUTTON style="background: Green; color: white;" onClick="Call Volume('UP')" style="WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
            <BUTTON style="background: Orange; color: white;" onClick="Call Volume('DOWN')" style="WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
            <BUTTON style="background: DarkOrange; color: white;" onClick="Call Volume('MUTE')" style="WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;-->
            <BUTTON onClick="Call Volume('{','175',' 50}')" style="background: Red; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
            <BUTTON onClick="Call Volume('{','174',' 50}')" style="background: Blue; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
            <BUTTON onClick="Call Volume('{','175',' 10}')" style="background: Green; color: white;WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
            <BUTTON onClick="Call Volume('{','174',' 10}')" style="background: Orange; color: white;WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
            <BUTTON onClick="Call Volume('','173','')" style="background: DarkOrange; color: white;WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;
            </center>
            </body>
            </html>





            share|improve this answer




























              1














              Here is a whole example in HTA with vbscript :



              <html>
              <head>
              <HTA:APPLICATION
              APPLICATIONNAME="Volume + - ON/OFF"
              BORDER="THIN"
              BORDERSTYLE="NORMAL"
              ICON="SndVol.exe"
              INNERBORDER="NO"
              MAXIMIZEBUTTON="NO"
              MINIMIZEBUTTON="NO"
              SCROLL="NO"
              SELECTION="NO"
              SINGLEINSTANCE="YES"/>
              <title>Volume + - ON/OFF </title>
              <script language="vbscript">
              '************************************************************************************
              Sub window_onload()
              CenterWindow 250,150
              End Sub
              '************************************************************************************
              Sub Volume(Param)
              set oShell = CreateObject("WScript.Shell")
              Select Case Param
              Case "MAX"
              oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
              Case "MIN"
              oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
              Case "UP"
              oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
              Case "DOWN"
              oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
              Case "MUTE"
              oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
              End select
              End Sub
              '*************************************************************************************
              Sub Volume(Param1,Param2,Param3)
              set oShell = CreateObject("WScript.Shell")
              oShell.SendKeys Param1 & chr(Param2) & Param3
              '--------------------------- MEMO ----------------------------------
              'oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
              'oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
              'oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
              'oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
              'oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
              End Sub
              '*************************************************************************************
              Sub CenterWindow(x,y)
              Dim iLeft,itop
              window.resizeTo x,y
              iLeft = window.screen.availWidth/2 - x/2
              itop = window.screen.availHeight/2 - y/2
              window.moveTo ileft,itop
              End Sub
              '************************************************************************************
              </script>
              </head>
              <body>
              <center>
              <!--<BUTTON style="background: Red; color: white;" onClick="Call Volume('MAX')" style="WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
              <BUTTON style="background: Blue; color: white;" onClick="Call Volume('MIN')" style="WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
              <BUTTON style="background: Green; color: white;" onClick="Call Volume('UP')" style="WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
              <BUTTON style="background: Orange; color: white;" onClick="Call Volume('DOWN')" style="WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
              <BUTTON style="background: DarkOrange; color: white;" onClick="Call Volume('MUTE')" style="WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;-->
              <BUTTON onClick="Call Volume('{','175',' 50}')" style="background: Red; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
              <BUTTON onClick="Call Volume('{','174',' 50}')" style="background: Blue; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
              <BUTTON onClick="Call Volume('{','175',' 10}')" style="background: Green; color: white;WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
              <BUTTON onClick="Call Volume('{','174',' 10}')" style="background: Orange; color: white;WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
              <BUTTON onClick="Call Volume('','173','')" style="background: DarkOrange; color: white;WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;
              </center>
              </body>
              </html>





              share|improve this answer


























                1












                1








                1







                Here is a whole example in HTA with vbscript :



                <html>
                <head>
                <HTA:APPLICATION
                APPLICATIONNAME="Volume + - ON/OFF"
                BORDER="THIN"
                BORDERSTYLE="NORMAL"
                ICON="SndVol.exe"
                INNERBORDER="NO"
                MAXIMIZEBUTTON="NO"
                MINIMIZEBUTTON="NO"
                SCROLL="NO"
                SELECTION="NO"
                SINGLEINSTANCE="YES"/>
                <title>Volume + - ON/OFF </title>
                <script language="vbscript">
                '************************************************************************************
                Sub window_onload()
                CenterWindow 250,150
                End Sub
                '************************************************************************************
                Sub Volume(Param)
                set oShell = CreateObject("WScript.Shell")
                Select Case Param
                Case "MAX"
                oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
                Case "MIN"
                oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
                Case "UP"
                oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
                Case "DOWN"
                oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
                Case "MUTE"
                oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
                End select
                End Sub
                '*************************************************************************************
                Sub Volume(Param1,Param2,Param3)
                set oShell = CreateObject("WScript.Shell")
                oShell.SendKeys Param1 & chr(Param2) & Param3
                '--------------------------- MEMO ----------------------------------
                'oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
                'oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
                'oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
                'oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
                'oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
                End Sub
                '*************************************************************************************
                Sub CenterWindow(x,y)
                Dim iLeft,itop
                window.resizeTo x,y
                iLeft = window.screen.availWidth/2 - x/2
                itop = window.screen.availHeight/2 - y/2
                window.moveTo ileft,itop
                End Sub
                '************************************************************************************
                </script>
                </head>
                <body>
                <center>
                <!--<BUTTON style="background: Red; color: white;" onClick="Call Volume('MAX')" style="WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
                <BUTTON style="background: Blue; color: white;" onClick="Call Volume('MIN')" style="WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
                <BUTTON style="background: Green; color: white;" onClick="Call Volume('UP')" style="WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
                <BUTTON style="background: Orange; color: white;" onClick="Call Volume('DOWN')" style="WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
                <BUTTON style="background: DarkOrange; color: white;" onClick="Call Volume('MUTE')" style="WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;-->
                <BUTTON onClick="Call Volume('{','175',' 50}')" style="background: Red; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
                <BUTTON onClick="Call Volume('{','174',' 50}')" style="background: Blue; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
                <BUTTON onClick="Call Volume('{','175',' 10}')" style="background: Green; color: white;WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
                <BUTTON onClick="Call Volume('{','174',' 10}')" style="background: Orange; color: white;WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
                <BUTTON onClick="Call Volume('','173','')" style="background: DarkOrange; color: white;WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;
                </center>
                </body>
                </html>





                share|improve this answer













                Here is a whole example in HTA with vbscript :



                <html>
                <head>
                <HTA:APPLICATION
                APPLICATIONNAME="Volume + - ON/OFF"
                BORDER="THIN"
                BORDERSTYLE="NORMAL"
                ICON="SndVol.exe"
                INNERBORDER="NO"
                MAXIMIZEBUTTON="NO"
                MINIMIZEBUTTON="NO"
                SCROLL="NO"
                SELECTION="NO"
                SINGLEINSTANCE="YES"/>
                <title>Volume + - ON/OFF </title>
                <script language="vbscript">
                '************************************************************************************
                Sub window_onload()
                CenterWindow 250,150
                End Sub
                '************************************************************************************
                Sub Volume(Param)
                set oShell = CreateObject("WScript.Shell")
                Select Case Param
                Case "MAX"
                oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
                Case "MIN"
                oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
                Case "UP"
                oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
                Case "DOWN"
                oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
                Case "MUTE"
                oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
                End select
                End Sub
                '*************************************************************************************
                Sub Volume(Param1,Param2,Param3)
                set oShell = CreateObject("WScript.Shell")
                oShell.SendKeys Param1 & chr(Param2) & Param3
                '--------------------------- MEMO ----------------------------------
                'oShell.SendKeys "{" & chr(175) & " 50}" ' volume maximum 100%
                'oShell.SendKeys "{" & chr(174) & " 50}" 'volume minimum 0%
                'oShell.SendKeys "{" & chr(175) & " 10}" 'volume +20%
                'oShell.SendKeys "{" & chr(174) & " 10}" 'volume +20%
                'oShell.SendKeys chr(173) 'permet de couper/remettre le son (bascule)
                End Sub
                '*************************************************************************************
                Sub CenterWindow(x,y)
                Dim iLeft,itop
                window.resizeTo x,y
                iLeft = window.screen.availWidth/2 - x/2
                itop = window.screen.availHeight/2 - y/2
                window.moveTo ileft,itop
                End Sub
                '************************************************************************************
                </script>
                </head>
                <body>
                <center>
                <!--<BUTTON style="background: Red; color: white;" onClick="Call Volume('MAX')" style="WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
                <BUTTON style="background: Blue; color: white;" onClick="Call Volume('MIN')" style="WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
                <BUTTON style="background: Green; color: white;" onClick="Call Volume('UP')" style="WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
                <BUTTON style="background: Orange; color: white;" onClick="Call Volume('DOWN')" style="WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
                <BUTTON style="background: DarkOrange; color: white;" onClick="Call Volume('MUTE')" style="WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;-->
                <BUTTON onClick="Call Volume('{','175',' 50}')" style="background: Red; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MAX</BUTTON>&nbsp;&nbsp;
                <BUTTON onClick="Call Volume('{','174',' 50}')" style="background: Blue; color: white;WIDTH: 85px; HEIGHT: 30px">Volume MIN</BUTTON>&nbsp;&nbsp;
                <BUTTON onClick="Call Volume('{','175',' 10}')" style="background: Green; color: white;WIDTH: 85px; HEIGHT: 30px">Volume +20%</BUTTON>&nbsp;&nbsp;
                <BUTTON onClick="Call Volume('{','174',' 10}')" style="background: Orange; color: white;WIDTH: 85px; HEIGHT: 30px">Volume -20%</BUTTON>&nbsp;&nbsp;
                <BUTTON onClick="Call Volume('','173','')" style="background: DarkOrange; color: white;WIDTH: 85px; HEIGHT: 30px">ON/OFF</BUTTON>&nbsp;&nbsp;
                </center>
                </body>
                </html>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 15 at 23:26









                HackooHackoo

                483211




                483211






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Super User!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1298399%2fscript-that-allows-microphone-to-test-if-there-is-sound%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Plaza Victoria

                    In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                    How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...