0

我正在尝试将我的 applescript 合并到 xcode 中。该脚本可以与 applescript 一起正常工作,但不能在 xcode 中运行。我正在尝试打开文件进行阅读。这是代码

set Location to "US"
set DriverFile to "/Volumes/MacPrintDrivers/" & Location & "DriverInstall.txt"
set DriverInstallFile to POSIX file DriverFile
open for access DriverInstallFile

我已经确认文件存在并且我可以显示内容。我似乎无法在 Xcode 中以这种方式阅读。我得到的错误是

«script» doesn’t understand the «event rdwropen» message. (error -1708)
4

1 回答 1

0

ASOC (AppleScript Objective-C) 在脚本添加命令(例如 )方面存在一些问题open for accesstell current application to有时你可以通过说,例如来解决这个问题tell current application to open for access。但有关更多详细信息,我建议您阅读 Shane Stanley 的书: http: //www.macosxautomation.com/applescript/apps/他对此进行了深入探讨。

于 2013-04-23T03:42:05.603 回答