Created
September 10, 2011 13:03
-
-
Save apod/1208284 to your computer and use it in GitHub Desktop.
AppleScript: Resize application
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 (path to frontmost application as Unicode text) | |
activate | |
-- Place the application on top left corner with size 1024x768 | |
set bounds of window 1 to {0, 0, 1024, 768} | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment