Created
February 10, 2015 11:19
-
-
Save keisei1092/f43406c3976cfaa01a27 to your computer and use it in GitHub Desktop.
【AppleScript】最初からMacのフルスクリーンモードでアプリを起動する ref: http://qiita.com/keisei_1092/items/1ea39bbec13e0b459418
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
tell application "Calendar" | |
activate | |
tell application "System Events" | |
tell process "Calendar" | |
click menu item "Enter Full Screen" of menu 1 of menu bar item "View" of menu bar 1 | |
end tell | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment