我需要一些方法来循环单行。
有没有办法在 AutoIt 中模拟新行?因为如果我尝试
While 1 MsgBox (0,1,2) Wend
不起作用。所以我想知道是否有办法模拟一条新线,比如
While 1 - MsgBox (0,1,2) - Wend
或一些功能来做到这一点。我也已经尝试过这样做:
Func repeat($func, $limit)
$i = 0
While $i <= $limit
Execute($func)
$i = $i + 1
WEnd
EndFunc
但它只执行Execute($func)
一次,即使我更改While $i <= $limit
为While 1
.
我努力了
Execute("While $i <= 5" & @LF & "MsgBox(0, 1, 24)" & @LF & "$i = $i + 1" & @LF & "WEnd")
@LF
同样,即使我更改为@CRLF
, @CR
, Chr(13)
, \n
, \r
...它也不起作用
有任何想法吗?