在完成循环之前,我试图从文件中返回一个值两次(第一个值,然后是第二个值)。它当前在重复循环之前从文件中返回第一个值两次。
我可以将信息保存在单独的文件中,但我不知道如何在重复循环之前从每个文件中提取第一个值。想法?
这是我的脚本:
Loop, read, C:\Users\Michael\Google Drive\AutoHotKey\Reference Files\item.txt
{
Loop, parse, A_LoopReadLine, %A_Tab%
{
sleep 1500
send 1
sleep 1500
send {enter}
send 52
sleep 1500
send {enter}
send 4
sleep 1500
send {enter}
sleep 1500
Send %A_LoopField%
sleep 1500
send {enter}
sleep 1500
Send %A_LoopField%
}
}