0
我試圖在完成循環之前從文件中返回一個值兩次(第一個值,然後是第二個值)。它現在在重複循環之前從文件返回第一個值兩次。從文件中返回兩次在一個循環內
我可以將信息保存在單獨的文件中,但我不知道如何在重複循環之前從每個文件中提取第一個值。想法?
這是我的腳本:
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%
}
}
請詳細說明您的問題。提供有關輸入和輸出的細節。你想閱讀的文件的結構是什麼?你想要提取什麼?發表一個代表*輸入 - >輸出*例子! – MCL