AutoHotkey热键脚本语言文件 (5)


  ;---------- 按热键  Win+B  关闭LED液晶显示器  ----------------------------------
  ;----------------------------------------Turn off Monitor----------------------------------------------
#B::  ;turn off the monitor.
  Sleep 1000  ; Give user a chance to release keys (in case their release would wake up the monitor again).
  ; Turn Monitor Off:
  SendMessage, 0x112, 0xF170, 2,, Program Manager  ; 0x112 is WM_SYSCOMMAND, 0xF170 is SC_MONITORPOWER.
  ; Note for the above: Use -1 in place of 2 to turn the monitor on.
  ; Use 1 in place of 2 to activate the monitor\'s low-power mode.
return

;----------  按热字串 SO空格 启动360搜索  ----------------------------------------------------
;::so::
;存在多行命令时热键后的代码必须换行(另起一行)
;  SetTitleMatchMode,2
;  {
;    IfWinExist  360搜索 - 干净、安全、可信任的搜索引擎 - 搜狗高速浏览器
;        WinActivate
;    Else
;      {
;       Run "C:\Users\Administrator\AppData\Roaming\360se\bin\360se.exe"
;        Sleep,2000  ; 2秒
;      }
;  }
;return


;----------  按热键 Win+V 打开我的工作目录文件夹 D:\D  --------------------------------
#v::
  IfWinExist D:\D
      WinActivate
  Else
      Run "D:\D"
return

;----------  按热键 Ctrl+Alt+F 打开FindOnClick  ------------------------------------------------
^#F::run C:\FindOnClick\FindOnClick.exe

;----------  按热键 Alt+C 打开我的个人主页  ------------------------------------------------
  ;!c::run

;----------  按热键 Ctrl+F12 清理我的桌面  ------------------------------------------------
^F12::
  Run  ,D:\Personal\AutoRun\清理桌面图标\清理桌面图标.bat, ,Hide
return

;----------  按热键 Ctrl+Alt+F12 清理我的桌面  ------------------------------------------------
^!F12::
  Run  ,D:\Personal\AutoRun\清理桌面图标\所有桌面图标.bat, ,Hide
  Send {LWin Down}{d Down}{d Up}{LWin Up}
  Send ,{F5 Down}{F5 Up}
return

;F11::run "D:\SaveLog\SourceCode\zSaveLogProject.exe"

;Win+E:: 资源管理器
;Alt+`  Everything磁盘搜索
;Ctrl+`  金山词霸
;Shift+Space  Total_Commander_8.01
;Alt+E  UltraEdit
;Alt+S  so.com网站
;Alt+D  我的工作目录文件夹 X:\D (X为我的移动硬盘盘符)

;Ctrl+Alt+W 打开我的文档 Alt+D 为QQ热键
!^w::run D:\Personal\我的文档
  ;语音计算机
!^c::run d:\AutoHotkey\语音计算器

;F10::Run D:\y应收款\ysk.exe

;#!d::run "C:\Program Files\DAEMON Tools Pro\DTPro.exe"

;按Shift+Alt+D打开Delphi2006
!+d::Run "C:\Program Files\Embarcadero\RAD Studio\10.0\bin\bds.exe" -pDelphi
return

;按Alt+E打开UltraEdit
;!e::
;run uedit32
;在上面的最后一行,"return" 用来结束热键。
;不过,如果一个热键仅仅需要执行一行,那么这行可以列在双冒号的右边。
;换句话说,return 可以省略:
return

;按Win+2打开网站,可以连续按Ctrl键2次来打开
#2::
  ;存在多行命令时热键后的代码必须换行(另起一行)
  SetTitleMatchMode,2
  {
    ;IfWinExist 网盘搜索引擎 - 搜狗高速浏览器
    ;WinActivate
    ;Else
    {
      Run "C:\Documents and Settings\Administrator\Application Data\360se6\Application\360se.exe"
      ;Sleep,2000  ; 2秒
    }
  }
;SetKeyDelay,0
;Send {AltDown}{d Down}{d Up}{AltUp}{TABDown}{TABUp}
return

;按Win+S打开so.com网站,可以连续按Ctrl键2次来打开
;#s::
;存在多行命令时热键后的代码必须换行(另起一行)
;SetTitleMatchMode,2
;{
;IfWinExist 网盘搜索引擎 - 搜狗高速浏览器
;WinActivate
;Else
;{
; Run "C:\Users\Administrator\AppData\Roaming\360se\bin\360se.exe"
;Sleep,2000  ; 2秒
; }
; }
;SetKeyDelay,0
;Send {AltDown}{d Down}{d Up}{AltUp}{TABDown}{TABUp}
;return

;按Win+Z打开autohotkey.com网站
#z::Run
return

;按Ctrl+Alt+N打开记事本,于QQ热键冲突,这里只是个例子取消了
;^!n::
;IfWinExist Untitled - Notepad
; WinActivate
;else
; Run Notepad
;return

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzzzxg.html