AutoHotKey Script AHK脚本++Topre Realforce 104Pro十周年纪念版静电容键盘
AutoHotKey Script AHK脚本++Topre Realforce 104Pro十周年纪念版静电容键盘
AutoHotKey Script AHK脚本++Topre Realforce 104Pro十周年纪念版静电容键盘
; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
; semicolon, such as this one, are comments. They are not executed.
; This script has a special filename and path because it is automatically
; launched when you run the program directly. Also, any text file whose
; name ends in .ahk is associated with the program, which means that it
; can be launched simply by double-clicking it. You can have as many .ahk
; files as you want, located in any folder. You can also run more than
; one ahk file simultaneously and each will get its own tray icon.
; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it
; launches a web site in the default browser. The second is Control+Alt+N
; and it launches a new Notepad window (or activates an existing one). To
; try out these hotkeys, run AutoHotkey again, which will load this file.
; AutoHotKey Script AHK脚本
;符号 描述
;# Win (Windows 标识键)
;! Alt
;^ Control
;+ Shift
;Win+E:: 资源管理器
;Alt+` Everything磁盘搜索
;Ctrl+` 金山词霸
;Shift+Space Total_Commander_8.01
;Alt+E UltraEdit
;Alt+S so.com网站
;按Alt+E打开UltraEdit
!e::
run uedit32
;在上面的最后一行,"return" 用来结束热键。
;不过,如果一个热键仅仅需要执行一行,那么这行可以列在双冒号的右边。
;换句话说,return 可以省略:
return
;按Alt+S打开so.com网站
!s::Run www.so.com
return
;按Win+Z打开autohotkey.com网站
#z::Run www.autohotkey.com
return
;按Ctrl+Alt+N打开记事本
^!n::
IfWinExist Untitled - Notepad
WinActivate
else
Run Notepad
return
;按Ctrl+Alt+Home重新启动
^!Home::
run ToolsSoftware\FastReset_Ctrl_Alt_Home
return
;按Ctrl+Alt+End关机
^!End::
run ToolsSoftware\FastPowerOFF_Ctrl_Alt_End
return
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains more about hotkeys.