gpt4 book ai didi

variables - 从另一个脚本获取变量

转载 作者:行者123 更新时间:2023-12-02 23:18:46 27 4
gpt4 key购买 nike

在 applescript 中,您可以使用在另一个脚本中定义的变量吗?我想你会有类似的东西:

set test to (load script "/tmp/a.scpt")

但是你会如何选择一个特定的变量呢?

最佳答案

您可以在外部脚本中使用属性变量

例如,a.scpt:

property foo : "hello world"

...并且在调用脚本中使用“x of n”引用样式。

set test to (load script "/tmp/a.scpt")
display dialog (the foo of test)

您还可以在外部脚本中访问处理程序的返回结果。

例如,a.scpt:

on getChoice()
set res to choose from list {"one fish", "two fish", "red fish", "blue fish"}
return res
end getChoice

...并在调用脚本中:

set choice to getChoice() of test

关于variables - 从另一个脚本获取变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18587568/

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