使用 AppleScript 退出应用程序

发布于 2024-09-30 10:03:47 字数 201 浏览 4 评论 0原文

每当我尝试使用 AppleScript 退出应用程序时,都会收到以下错误

发生了 -9874 类型的错误。

我正在使用的 AppleScript 命令是

tell application "app_name"
    quit
end tell

Whenever I try to quit an application using AppleScript I get the following error

An error of type -9874 has occurred.

The AppleScript command which I am using is

tell application "app_name"
    quit
end tell

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

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

发布评论

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

评论(1

木森分化 2024-10-07 10:03:47

您确定“app_name”存在吗?如果它确实存在,您确定它知道如何响应AppleEvents(是“AppleEvent-aware”)吗?尝试以下测试 - 启动 Activity Monitor (在 /Applications/Utilities 中)并运行此脚本:

tell application "Activity Monitor"
    quit
end tell

这对我来说效果很好 - 如果它对你来说工作正常,那么问题是可能与您的具体应用有关。如果它对您不起作用,那么您遇到了某种与系统相关的问题 - 在不同的 Mac 上尝试进行验证?

Are you sure that "app_name" exists ? If it does exist, are you sure that it knows how to respond to AppleEvents (is "AppleEvent-aware") ? Try the following test - launch Activity Monitor (in /Applications/Utilities) and run this script:

tell application "Activity Monitor"
    quit
end tell

This works fine for me - if it works OK for you then the problem is probably with your specific application. If it doesn't work for you then you have some kind of system-related problem - try it on a different Mac to verify ?

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