Created
September 15, 2014 06:05
-
-
Save hayeah/4c28d79329c3f534b2ae to your computer and use it in GitHub Desktop.
set xcode windows dimensions
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
| (* | |
| Set xcode window dimension | |
| *) | |
| set theApp to "Xcode6-Beta6" | |
| set width to 1400 | |
| set height to 900 | |
| tell application theApp | |
| activate | |
| reopen | |
| set the bounds of the first window to {0, 0, width, height} | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment