2

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

4

1 回答 1

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
于 2013-06-23T00:42:14.367 回答