AutoHotKey SetKeyDelay选项似乎不起作用



我有一个非常简单的AutoHotKey脚本,我希望在键入的字符之间引入可见的延迟。。。我已经阅读了关于SetKeyDelay的文档,但下面的示例似乎没有提供任何密钥延迟。。。有什么想法吗?我希望当我键入rpa并点击enter键时,字符会缓慢地键入。。。更像是人类打字。

SetKeyDelay ,3000,200
::rpa::
Send {Text} 
(
while ( iterator?.hasNext() ) {
def comp = iterator.next()
if (comp.sku != null ) {
def row = [
"sku"         : comp.sku,
"ProductGroup": comp.attribute1,
"BusinessUnit": comp.attribute2
]
}
}
)
return

创建新脚本时,SendMode Input行自动插入

删除SendMode Input;修复了该问题

最新更新