AutoHotKey 下载地址 AutoHotkey Downloads

  • 首先进行 AutoHotKey 的安装
  • 编写如下 .ahk 文件(F10:打开关闭声音,F11:增加声音,F12:减少声音,当然也可根据自己的喜好,设置为其他的热键):

    F10::SoundSet, +1,, mute
    F11::
    SoundSet +10, MASTER
    SoundSet, +10, WAVE
    Return
    F12::
    SoundSet -10, MASTER
    SoundSet, -10,WAVE
    Return
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <myemail@nowhere.com>
    ;
    ; Script Function:
    ;   Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    
    #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
    
    SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
    

普通键盘怎样控制电脑音量大小?

posted on 2016-10-06 23:18  未雨愁眸  阅读(195)  评论(0编辑  收藏  举报