tarasn
tarasn

Reputation: 19

I can't increase the volume via Autohotkey script

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

Answers (1)

Elliot DeNolf
Elliot DeNolf

Reputation: 2999

#Up::ControlSend,, ^{Up}, ahk_class QWidget
#Down::ControlSend,, ^{Down}, ahk_class QWidget

Upvotes: 1

Related Questions