使用 applescript 粘贴到 Microsoft Word
我正在尝试制作一个简单的 applescript,其执行以下操作:
切换到 Microsoft Word 类型 * 按粘贴(命令 v) 按回车键
我想出了这个,但它行不通......有什么想法吗?
tell application "System Events"
tell application process "Microsoft Word" to activate
keycode(42)
keycode(118)
keycode(3)
end tell
end tell
I'm trying to make a simple applescript which doesn the following:
Switch to Microsoft Word
type *
press paste (command v)
press return
I came up with this but it won't work... Any ideas why??
tell application "System Events"
tell application process "Microsoft Word" to activate
keycode(42)
keycode(118)
keycode(3)
end tell
end tell
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您以错误的方式使用关键代码并且您的告诉块不正确尝试这个
your using key code in the wrong manner and your tell blocks are not correct try this
一般来说,如果您尽可能使用文本而不是键码,您的代码会更容易编写且更具可读性。
In general your code is easier to write and much more readable if you use text wherever possible rather than keycodes.