2

我编写了一个(还)不可编写脚本的 Mac 应用程序,我想用 Applescript 运行它。以下任一脚本都会出现“发生类型 10660 的错误。”。经过数小时的搜索,我没有找到解决方案,也没有找到对错误的解释。

if exists application "RotorDCU" then
    display dialog "Found." buttons {"OK"}
else
    display dialog "Not found." buttons {"OK"}
end if

tell application "RotorDCU"
    activate
end tell
4

1 回答 1

4

错误 -10660 是启动服务错误,在接口文件中进行了说明LSInfo.h

该应用程序在垃圾箱文件夹中时无法运行

RotorDCU在垃圾箱里吗?

于 2013-02-17T20:18:17.200 回答