Loading

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

posted @ 2021-10-27 16:14  ZXYFrank  阅读(114)  评论(0编辑  收藏  举报