Reputation: 19
I can't increase the volume via Autohotkey script. The shortcut for increasing volume in VLC is CTRL + UP ARROW. This script doesn't work.
SetTitleMatchMode, 2
ControlSend, , {CTRLDOWN}{UP}{CTRLUP}, VLC media player
Return
Upvotes: 0
Views: 386
Reputation: 2999
#Up::ControlSend,, ^{Up}, ahk_class QWidget
#Down::ControlSend,, ^{Down}, ahk_class QWidget
Upvotes: 1