如何从 AutoHotkey 脚本返回值?
我需要调用一个将返回值的 AutoHotkey 脚本。
例如,如下所示:
return_val = Shell("AutoHotKey.exe script.ahk")
我的脚本如下所示:
IfExists, filename
return 1
Else
return 0
我收到一条错误消息,告诉我在终止返回语句中不能有值。我还尝试使用 Exit 语句而不是 return 。
如何从 AutoHotkey 脚本返回值?
I need to call an AutoHotkey script that will return a value.
For example, something like this:
return_val = Shell("AutoHotKey.exe script.ahk")
My script looks like this:
IfExists, filename
return 1
Else
return 0
I get an error telling me I can't have a value in the terminating return statement. I have also tried using the Exit statement instead of return.
How can I return a value from an AutoHotkey script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要返回退出代码,您需要调用 ExitApp 以及所需的代码。使用 IfExist 确定文件是否存在。这意味着您调用的脚本应如下所示:
调用脚本时,您应使用 RunWait< /a> 并向其传递
UseErrorLevel
参数。如果正确启动,这会将变量ErrorLevel
设置为被调用进程的退出代码;如果进程无法启动,则设置文本ERROR
。在此示例中,如果文件存在,消息框将显示“1”,如果不存在,消息框将显示“0”。
To return an exit code you'll want to call ExitApp along with your desired code. Use IfExist to determine if the file exists. This means the script that you call should look like this:
When calling the script you should use RunWait and pass it the
UseErrorLevel
parameter. This will set the variableErrorLevel
to the exit code of the called process if it launches correctly or the textERROR
if the process cannot be started.In this example the message box will display '1' if the file exists or '0' if it doesn't.