我正在尝试使用Applescript编写的Swift脚本编写的Cocoa应用程序。
我创建了一个SDEF文件,配置了我的info.plist并创建了一个我认为合适的类。
definition.sdef
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
<dictionary title="SamX">
<!-- specific suite(s) for the application follow... -->
<suite name="SamX Scripting Suite" code="Samx" description="Suite for communication with the application">
<command name="savedoc" code="corecnte" description="description">
<cocoa class="ProjectName.ScriptingSaveNotification" id="BLah"/>
<parameter name="with dname" code="WTdc" type="text" optional="no" description="description">
<cocoa key="DocumentName"/>
</parameter>
<result type="boolean" description="The result of the invocation. True if it succeeds, False if it does not"/>
</command>
</suite>
</dictionary>
info.plist中
ScriptingSaveNotification.swift
import Foundation
import Cocoa
class ScriptingSaveNotification: NSScriptCommand, NSUserNotificationCenterDelegate {
override func performDefaultImplementation() -> AnyObject? {
let parms = self.evaluatedArguments
var name = ""
if let args = parms {
if let DocumentName = args["DocumentName"] as? String {
name = DocumentName
}
}
debugPrint("We were prompted to save");
return "hello world"
}
func userNotificationCenter(center: NSUserNotificationCenter, shouldPresentNotification notification: NSUserNotification) -> Bool {
debugPrint("We were prompted to save");
return true
}
}
我有一个启动的应用程序。应用程序的SDEF文件似乎在Applescript Editor中反映出来。 Applescript编辑器还返回字典定义。但是当我运行命令时,我总是得到5(int)的输出,并且我的调试行似乎都没有在Xcode中输出。
在我看来,也许我在SDEF中不恰当地引用了我的课程。但我不是百分百肯定的。我尝试过多次重命名。任何帮助将不胜感激。
测试脚本
tell application "MyApplication"
set testString to "Hello"
set returnValue to savedoc testString
display alert returnValue
end tell
答案 0 :(得分:3)
修改强>
主要问题是您实际上并未在脚本中使用with dname
参数。它应该是:
set returnValue to savedoc with dname testString
也就是说,以下信息对于创建合适的sdef
仍然有效,其他建议/示例可能会有所帮助。
这是在evaluatedArguments
的{{1}}中传递字符串然后在Swift中作为脚本命令的结果返回该字符串的基本示例(您可以在成功/失败时返回布尔值该命令或任何其他类型的结果;实际上,在您的NSScriptCommand
中,您说您将返回sdef
,但您的命令将返回boolean
({ {1}} string
中的{1}})。创建text
可能很棘手。您的命令代码应以套件代码开头,您可以删除sdef
和sdef
参数(如果省略id
参数,则默认为该参数是必需的)。如果您只需要一个参数,您也可以使用optional
代替。
您可以下载演示项目:
以下是相关位(除了测试中正确的optional
条目外)。
<强> ScriptableSwift.sdef 强>
direct-parameter
<强> SaveScriptCommand.swift 强>
plist
测试AppleScript
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
<dictionary title="ScriptableSwift Terminology">
<suite name="ScriptableSwift Scripting Suite" code="SSss" description="Standard suite for application communication.">
<command name="save" code="SSssSave" description="Save something.">
<cocoa class="ScriptableSwift.SaveScriptCommand"/>
<parameter name="in" code="Fpat" type="text" description="The file path in which to save the document.">
<cocoa key="FilePath"/>
</parameter>
<result type="text" description="Echoes back the filepath supplied."/>
</command>
</suite>
</dictionary>
结果:
import Foundation
import Cocoa
class SaveScriptCommand: NSScriptCommand {
override func performDefaultImplementation() -> AnyObject? {
let filePath = self.evaluatedArguments!["FilePath"] as! String
debugPrint("We were prompted to save something at: \(filePath)");
return filePath
}
}