AHK Acrobat 扩展脚本 / Acrobat 高亮 快捷键
; #IfWinActive ahk_class AcrobatSDIWindow
; h::Send {Left}
; Return
#IfWinActive ahk_class AcrobatSDIWindow
j::Send {Down}
^d::Send {Down 20}
Return
#IfWinActive ahk_class AcrobatSDIWindow
k::Send {Up}
^u::Send {up 20}
Return
; #IfWinActive ahk_class AcrobatSDIWindow
; l::Send {Right}
; Return
#IfWinActive ahk_class AcrobatSDIWindow
Shift & 1::
CoordMode, Mouse, Screen
MouseGetPos, px,py
CoordMode Pixel ; Interprets the coordinates below as relative to the screen rather than the active window.
ImageSearch, FoundX, FoundY,0, 0, A_ScreenWidth, A_ScreenHeight, D:\Data\Programs\UserData\AutoHotkey\patterns\gray_acrobat_highlight.bmp
Mousemove FoundX + 10,FoundY + 10,0
MouseClick, left,
Mousemove px,py,0
Return
本博文本意在于记录个人的思考与经验,部分博文采用英语写作,可能影响可读性,请见谅
本文来自博客园,作者:ZXYFrank,转载请注明原文链接:https://www.cnblogs.com/zxyfrank/p/15471269.html