Wie mache ich einen Hotkey, der den Ton während eines Spiels stummschaltet?

396
bgstn

Wie mache ich einen Hotkey, der den Ton während des Spiels stummschaltet?

nircmd scheint nicht zu funktionieren

0

1 Antwort auf die Frage

1
Dave

Verwenden Sie AutoHotKey

SoundSet, NewSetting [, ComponentType, ControlType, DeviceNumber]  ; BASIC EXAMPLES: SoundSet, 50 ; Set the master volume to 50% SoundSet +10 ; Increase master volume by 10% SoundSet -10 ; Decrease master volume by 10% SoundSet, 1, Microphone, mute ; mute the microphone SoundSet, +1,, mute ; Toggle the master mute (set it to the opposite state) SoundSet, +20, Master, bass ; Increase bass level by 20%. if ErrorLevel MsgBox, The BASS setting is not supported for MASTER. 

https://autohotkey.com/docs/commands/SoundSet.htm

Gibt es ein Programm, das dies einfach kann, weiß ich nicht, Scripting bgstn vor 7 Jahren 0