Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在Chrome窗口上制作一个“退出全屏”的applescript,但没有任何效果。我对涉及applescript单击正确菜单项的解决方案没有任何问题(没有按照我尝试的方式工作),唯一的必要条件是它不使用键盘快捷键。
单击菜单项在全屏桌面上不起作用,但该exit presentation mode命令会退出全屏。
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