如何通过用户输入循环 AHK?

如何通过用户输入循环 AHK?

有没有办法使用用户输入来循环执行某个脚本INPUTBOX

当我单击按钮时,下面的脚本只会运行一次。有没有办法让脚本弹出一些内容,要求输入一个数字来循环?假设弹出一些内容,我输入“10”。那么脚本就会执行 10 次。

我的脚本:

sleep 100
InputBox, testvariable, Enter your Input here,,,350, 120
send 100
send {Tab}
sleep 100
send %testvarable%
return

答案1

只需使用另一个输入框和一个环形

InputBox, ite, "Repeat...", "How many times to loop?"
Loop %ite% {
  sleep 100
  InputBox, testvariable, Enter your Input here,,,350, 120
  send 100
  send {Tab}
  sleep 100
  send %testvarable%
}

相关内容