AutoHotKey 脚本不工作

AutoHotKey Script Not Working

我有一个应用程序,我们经常使用 F1....F12 KEYS。 F2 显示下拉列表,Shift+F4 选择一条记录,F10 提交一条记录等等……我想自动执行上述任务。由于我是 AutoHotKey 的新手,我编写了如下基本脚本

^j::
   send, {f2}   //This will show user dropdown list
   send, {+f4} // Shift+F4 will select a record
   send, {f12} //User visits last page
   send, {+E}  // Ctrl+E expands a record
   send, {f10} //Commit 
 Return

第一行代码有效,但卡在第二行。我做错了什么

是对的。

SetKeyDelay, 180
^j
send, {f2}
send, +{f4}
send, {f12}
send, ^e
send, {f10}
return