Jump to content

Recommended Posts

Posted

hello autoit-Users,

can you help me with a little problem.

i toggle the master sound with

Send("{VOLUME_MUTE}")
, but how i find the state (is the volume off or on!)?

thx for help

ms_news

Posted (edited)

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

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
  • Recently Browsing   0 members

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