发送后 Autohotkey 箭头键卡住/阻塞到无穷大

Autohotkey Arrow Key stuck / blocked to infinity after a Send

当我发送 {Down Down} 键时:底部箭头,该键停留在无穷大。我只想用这段代码推送一次:

F8::
Send {Down Down}
return

我已经尝试过 Sleep 和大量其他解决方案,但没有成功。

您代码中的第一个 down 暗示您想要按住键 "Down"。 "Down" 和 "Up" 是键状态的前缀。

F8::
Send {Down}
return