使用 Applescript 打字

发布于 2024-12-08 16:27:27 字数 97 浏览 0 评论 0原文

可以用 applescript 为您提供我的 mac 类型吗? 我想要的是这样的:编译时,这个 applescript 将输入一个短语,然后按 Enter。有没有模拟按键的代码?

Is it possible to have my mac type for you with applescript?
What I want is this: when compiled, this applescript will type a phrase, then press enter. Is there any code simulating the pressing of keys?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿! 2024-12-15 16:27:27

击键命令将适合您。

tell application "System Events" to keystroke "A phrase" & return & "Another phrase"

如果您想要特定的应用程序来执行输入,只需按照以下顺序执行操作:

tell application "System Events" to tell process "TextEdit" to keystroke "A phrase" & return & "Another phrase"

The keystroke command will work for you.

tell application "System Events" to keystroke "A phrase" & return & "Another phrase"

If you want a specific application to do the typing, just do something along these lines:

tell application "System Events" to tell process "TextEdit" to keystroke "A phrase" & return & "Another phrase"
煮茶煮酒煮时光 2024-12-15 16:27:27

是的,在系统事件>中查看击键和按键按下Processes Suite,尽管您必须打开通用访问

Yes, look at keystroke and key down in System Events > Processes Suite, though you have to turn on Universal Access

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文