使用applescript退出Google Chrome全屏

时间:2013-06-22 23:54:08

标签: google-chrome applescript

我想在Chrome窗口上制作一个“退出全屏”的AppleScript,但没有任何效果。我没有问题解决方案涉及Applecript点击正确的菜单项(没有按照我尝试的方式工作),唯一的必要条件是它不使用键盘快捷键。

1 个答案:

答案 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