Skip to content

Instantly share code, notes, and snippets.

@apod
Created September 10, 2011 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save apod/1208284 to your computer and use it in GitHub Desktop.
Save apod/1208284 to your computer and use it in GitHub Desktop.
AppleScript: Resize application
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