-
-
Notifications
You must be signed in to change notification settings - Fork 556
Closed
Description
I just had to write an autohotkey script to lock my mic volume because random games will change it without me knowing. It needs to stay at 70 because above that reveals some background electrical noise. A simple checkbox by every audio device with a volume slider (in my case, line-in on device number 3) would do the job. Below you can see my script.
Loop
{
SoundGet, line_in_mic_volume, MASTER, VOLUME, 3
if line_in_mic_volume = 70
{
Sleep, 9000 ; 9 second delay before checking again because it's not that important
}
else
{
SoundSet, 70, MASTER, VOLUME, 3
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels