(如果你想重现这个例子,请从here下载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不会突出显示该区域。
你有同样的问题吗?