我想在Chrome窗口上制作一个“退出全屏”的AppleScript,但没有任何效果。我没有问题解决方案涉及Applecript点击正确的菜单项(没有按照我尝试的方式工作),唯一的必要条件是它不使用键盘快捷键。
答案 0 :(得分:2)
单击菜单项在全屏桌面上不起作用,但exit presentation mode
命令退出全屏。
tell application "Google Chrome"
tell window 1 to exit presentation mode
end tell
tell application "Google Chrome"
repeat with w in windows
try
tell w to exit presentation mode
end try
end repeat
end tell