gpt4 book ai didi

Applescript 显示 Apple 菜单栏项目

转载 作者:行者123 更新时间:2023-12-04 02:38:52 25 4
gpt4 key购买 nike

我是 Applescript 新手。我想知道 Applescript 来显示来自任意应用程序的 Apple 菜单栏项目(但许多栏应该保留用于原始应用程序)。

我尝试了以下脚本,将 Finder 用作一种虚拟应用程序,但它没有用。

tell application "System Events"
tell process "Finder"
tell menu bar 1
click menu bar item "Apple"
end tell
end tell
end tell

有人能帮忙吗?

PS-1:我想知道这一点,因为将焦点移动到菜单栏的 Control-F2 通常不起作用,如以下链接中所述: https://apple.stackexchange.com/questions/12723/control-f2-move-focus-to-menu-bar-only-works-occasionally

PS-2:我试图张贴图片,但不允许。

最佳答案

process 1 where frontmost is true 获取最前面的进程:

tell application "System Events" to tell (process 1 where frontmost is true)
click menu bar item 1 of menu bar 1
end tell

虽然在全屏窗口中单击菜单栏项目不起作用。如果系统事件在几分钟内未被使用,它会自动关闭,再次打开时会有短暂的延迟。

关于Applescript 显示 Apple 菜单栏项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16390279/

25 4 0