0

在 AppleScript 中,您如何使用来自另一个脚本的处理程序?

我试过这个

set test to (load script "/Users/username/Desktop/test.scpt")

test()

这是桌面上的 test.scpt

display dialog "test"

运行第一个脚本时,我得到

错误“«脚本»不理解测试消息。” 从«script»到«class test»的数字-1708

4

1 回答 1

2

您需要将要调用的代码包装在处理程序中:

测试.scpt:

on doTest()
    display dialog "test"
end doTest

然后执行它:

set test to (load script "/Users/username/Desktop/test.scpt")
tell test to doTest()
于 2013-09-03T04:37:53.673 回答