Created
December 9, 2011 22:24
-
-
Save jelder/1453585 to your computer and use it in GitHub Desktop.
AppleScript to launch Chrome in Presentation mode (Fullscreen)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# url.txt should contain the URL load in Chrome in full screen. | |
do shell script "open '/Applications/Google Chrome.app' " & readFile("/url.txt") | |
tell application "Google Chrome" to activate | |
tell application "System Events" | |
keystroke "f" using {command down, shift down} | |
end tell | |
# All this just to read a file; no backticks in AppleScript. | |
on readFile(unixPath) | |
set foo to (open for access (POSIX file unixPath)) | |
set txt to (read foo for (get eof foo) as Çclass utf8È) | |
close access foo | |
return txt | |
end readFile |
@iPadGuy nope. Still here. CMD+SHIFT+F on Mac.
Yep, presentation mode has been removed on their latest update. I suspect @iPadGuy was using chromium and saw it earlier. It appears you need to make sure "Hide Toolbar in Full Screen" is checked and then go fullscreen with
keystroke "f" using {control down, command down}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems that Presentation Mode has been removed from Chrome...