Skip to content

Instantly share code, notes, and snippets.

@apod
Created September 10, 2011 13:03
Show Gist options
  • Select an option

  • Save apod/1208284 to your computer and use it in GitHub Desktop.

Select an option

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