게임 중에 모든 사운드를 소거하는 핫키를 만드는 방법


0

게임을 할 때 모든 사운드를 소거하는 핫키를 만들려면 어떻게해야합니까?

nircmd 작동하지 않는 것 같습니다.

답변:


1

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


이 스크립트를 모르는 프로그램이
있습니까?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.