(如果你想重现这个例子,请从这里下载 Paint.NET ,它是免费的,它比 Microsoft Paint 有更多的功能)。
当您打开 Paint.NET 时,加载一个简单的图像并将矩形选择作为工具。
我写了这个简单的脚本:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
^d::
MouseClickDrag, Left, 365, 434, 906, 460
;You can change mouse coordinates as you wish
Send, ^c
Return
Ctrl
用+运行它d
。
我无法选择这些坐标所描述的区域,而使用矩形颜色填充工具可以正常工作。
如果我使用矩形选择器,AutoHotkey 似乎不会突出显示该区域。
你有同样的问题吗?