Skip to content

Instantly share code, notes, and snippets.

@petros
Forked from apod/gist:1208284
Created September 10, 2011 13:49
Show Gist options
  • Save petros/1208330 to your computer and use it in GitHub Desktop.
Save petros/1208330 to your computer and use it in GitHub Desktop.
Resize application
tell application (path to frontmost application as Unicode text)
activate
set x to 400
set y to 400
set width to 1024
set height to 768
set bounds of window 1 to {x, y, x + width, y + height}
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment