Autohotkey。我怎样才能只按一次 ctrl 按钮而不是每次都按?

Autohotkey。我怎样才能只按一次 ctrl 按钮而不是每次都按?
shift::SoundSet +1
ctrl::SoundSet -1

......是脚本,问题是如果我想将音量再增加五倍,我需要按 ctrl 五次。

不同于此:

PgUp::SoundSet +3
pgdn::SoundSet -3

我只需按住任意一个键,音量就会继续升高/降低,如果我松开它,音量就会停止。

相关内容