如何从 AppleScript 访问剪贴板?
我需要能够通过 AppleScript 将文本从剪贴板发送到我正在编写的应用程序(在 Objective-C 中)。显然,我需要使我的应用程序可编写脚本(我目前正在阅读有关此的 Apple 文档),但这可能/易于实现吗?
I need to be able to send text from the clipboard to an application I'm writing (in Objective-C) via AppleScript. Obviously I need to make my application scriptable (I'm currently reading the Apple Docs about this) but is this possible/easy-to-implement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 AppleScript 端,您可以使用命令
将剪贴板设置为
将数据放入剪贴板。请参阅 AppleScript 语言指南。On the AppleScript side you can use the command
set the clipboard to
to put data on the clipboard. See the AppleScript Language Guide.如果您需要应用程序从剪贴板检索数据,则应使用
NSPasteboard
类。为什么您认为需要使用 AppleScript?
If you need your app to retrieve data from the clipboard, you should use the
NSPasteboard
class.Why do you think you need to use AppleScript?