gpt4 book ai didi

AutoHotKey 无限循环

转载 作者:行者123 更新时间:2023-12-04 18:40:45 25 4
gpt4 key购买 nike

有没有办法在 AutoHotKey 中创建这样的东西?

bool isReady = false;
while (!isReady) {
// Do something here
isReady = true;
}

我尝试使用 While 循环进行试验,但无论我给程序的条件如何,它都以 1 个循环结束。我目前使用的是 1.0.47.06 版。

我在这里阅读了文档: http://www.autohotkey.com/docs/commands/While.htm我试图给 while 循环一个 true 值。但它只执行了一次。 (我期待它永远循环,直到我终止脚本)。
condition := true

while (condition)
{
MsgBox, condition
}

while (true)
{
MsgBox, true
}

最佳答案

您的代码是正确的,但 While命令需要 1.0.48+ 版本。

您应该在这里更新到最新版本的 AHK - http://ahkscript.org/download/

关于AutoHotKey 无限循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26894614/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com