From 6cd6d86977a1881e55daf784db0722a0dd36ffcd Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 13 Jan 2021 16:08:40 -0800 Subject: [PATCH] Add volumecontrol_f24.ahk. --- volumecontrol_f24.ahk | 48 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 volumecontrol_f24.ahk diff --git a/volumecontrol_f24.ahk b/volumecontrol_f24.ahk new file mode 100644 index 0000000..2577196 --- /dev/null +++ b/volumecontrol_f24.ahk @@ -0,0 +1,48 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +; Alt-F11, Alt-F12 = sound down and up +; WINDOWS 7 USERS: You need +; `Send {Volume_Up}` instead of `SoundSet +5` and +; `Send {Volume_Down}` instead of `SoundSet -5`. +; The `SoundSet, +1, , mute` will still work okay. + +vol_down(amount) +{ + SoundSet -%amount% + return +} + +vol_up(amount) +{ + SoundSet +%amount% + SoundGet, sound_mute, Master, mute + if sound_mute = On + { + SoundSet, +0, , mute + } + return +} + +F23:: +{ + vol_down(5) + return +} ++F23:: +{ + vol_down(1) + return +} + +F24:: +{ + vol_up(5) + return +} ++F24:: +{ + vol_up(1) + return +}