Jump to content

master sound state (on/off)?


ms_news
 Share

Recommended Posts

Func _WaveVolGet()
    Local $WaveVol = -1, $p, $ret
    Const $MMSYSERR_NOERROR = 0
    $p = DllStructCreate ("dword")
    If @error Then
        Return -1
    EndIf
    $ret = DllCall("winmm.dll", "long", "waveOutGetVolume", "long", -1, "long", DllStructGetPtr ($p))
    If ($ret[0] == $MMSYSERR_NOERROR) Then
        $WaveVol = Round(Dec(StringRight(Hex(DllStructGetData ($p, 1), 8), 4)) / 0xFFFF * 100)
    EndIf
    DllStructDelete ($p)
    Return $WaveVol
EndFunc  ;==>_WaveVolGet

Try this, thanks to gafrost :whistle:. I THINK it should return 0 if the sound is muted but I can't test it, sorry.

Edit:

Try here for a slightly updated version of the function ;) > http://www.autoitscript.com/forum/index.ph...p;hl=sound+mute

Edited by Burrup

qq

Link to comment
Share on other sites

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...