如何在autohotkey中设置箭头热键?

时间:2014-11-10 23:03:18

标签: autohotkey

我正在使用AutoHotkey中的脚本工作,允许我使用Dell AT101W键盘控制计算机的音量(因为Windows中没有设置按键来控制这些事情,而且这个键盘没有编程控制器)。

到目前为止我所拥有的:

^!(whatever the up arrow is) ; What is up?
     SoundSet +2
^!(whatever the down arrow is) ; What is down?
     SoundSet -2

我不完全确定我是否有正确的音量命令,但我完全不知道如何让它识别向上和向下箭头按键(我不知道它们是什么)。示例脚本受到赞赏,但绝不是必需的。

1 个答案:

答案 0 :(得分:2)

实际上非常简单,只有UpDown

这是一个工作脚本,用于设置托盘消息气球,在更改后通知您新卷:

^!Up::
     SoundSet +2
     GoSub DisplayCurrentVolume
     Return
^!Down:: 
     SoundSet -2
     GoSub DisplayCurrentVolume
     Return

DisplayCurrentVolume:
     SoundGet, volume
     volume := Ceil(volume) ; Round up
     TrayTip, Volume Adjusted, Volume changed to %volume%`%, 5, 1
     Return