它是一款轻量级的脚本语言文件,它可以干任何事情,如做dnf的连发脚本,类似按键精灵的自动化点击,按键自动打开文件一系列事情,文件需要按照ahk自己的语言,实现自定义的脚本宏
https://www.autohotkey.com/ 下载
http://ahkcn.sourceforge.net/docs/AutoHotkey.htm 使用操作
个人定义的代码
;replace CapsLock to LeftEnter; CapsLock = Alt CapsLock
$CapsLock::Enter
LAlt & Capslock::SetCapsLockState, % GetKeyState("CapsLock", "T") ? "Off" : "On"
!u::Send ^c !{tab} ^v;
;#########################################
; 键盘控制鼠标 #
;#########################################
; MouseMove, X, Y [, Speed, R]
; 鼠标移动的目标位置的 x/y 坐标, 可以为 表达式. 坐标相对于活动窗口
; Speed
; 移动鼠标的速度,介于 (最快)和 (最慢)之间,可以为表达式。
; 注:速度为 表示瞬时移动鼠标到目标位置。如果省略,则使用默认速度。
; R
; 如果此参数为字母 R, 则会把 X 和 Y 坐标视为距离当前鼠标位置的偏移. 换句话说, 会把光标从当前位置往右移动 X 像素 (负值则往左) 且往下移动 Y 像素 (负值则往上).
!up::MouseMove, , -, , R ; Win+UpArrow 热键 => 上移光标
!Down::MouseMove, , , , R ; Win+DownArrow => 下移光标
!Left::MouseMove, -, , , R ; Win+LeftArrow => 左移光标
!Right::MouseMove, , , , R ; Win+RightArrow => 右移光标
AppsKey::
SendEvent {Blind}{LButton down}
KeyWait AppsKey ; 防止键盘自动重复导致的重复鼠标点击.
SendEvent {Blind}{LButton up}
return
RCtrl:: ; RCtrl => Right-click
SendEvent {Blind}{RButton down}
KeyWait RCtrl ; 防止键盘自动重复导致重复的鼠标点击.
SendEvent {Blind}{RButton up}
return
;#############################################
;自定义上下左右
;!q::
;Send,Click
;Click
;Return
!s::
Send, {Down}
Return
!d::
Send, {Right}
Return
!a::
Send, {Left}
Return
!w::
Send, {Up}
Return
;##########拖动选中文本触发ctrl+c############
~LButton::
CoordMode, Mouse, Screen
;这一句,最好加上,不然在切换窗口的时候容易误触发;当然误触发应该也没啥事…
MouseGetPos, x1, y1
KeyWait, LButton, U
WinGetActiveTitle, Title
IfInString, Title, xshell ;执行title才会触发,如xshell
{
MouseGetPos, x2, y2
if (abs(x1-x2)>10 or abs(y1-y2)>10)
;当然得拖动一段距离才触发
send ^{insert}
}
else{
}
return
;##########################################
;############鼠标左右键同时按下触发ctrl+C,双击触发ctrl+v#######
~Lbutton & Rbutton:: Send ^c
~Lbutton::
if (A_PriorHotkey <> "~Lbutton" or A_TimeSincePriorHotkey > 400)
{
KeyWait, Lbutton
return
}
Send, ^v
return
;#################################################
;C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp
;参考文档 http://ahkcn.github.io/docs/Scripts.htm
;^!q::RUN ;C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Visual Studio Code\Visual Studio Code
版权声明:本文原创发表于 博客园,作者为 RainBol本文欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则视为侵权。
手机扫一扫
移动阅读更方便
你可能感兴趣的文章