Home » Questions » Computers [ Ask a new question ]

Position and Sizing OS X windows to Exact Pixel Dimentions/Locations

Position and Sizing OS X windows to Exact Pixel Dimentions/Locations

Is there an OS X application and/or system utility that will allow a user (me) to position application windows at exact screen coordinates, as well as size windows to exact pixel dimensions? I'm going to creating some documentation, and I'd like things to be positioned and sized exactly the same for each screen capture session.

Asked by: Guest | Views: 226
Total answers/comments: 1
Guest [Entry]

"You could try using an AppleScript to set the window size and position.

You could do something similar to:

tell application ""Safari""
activate
set the bounds of the first window to {100, 0, 1000, 700}
end tell

You could also set size and position of subsequent windows using 'second window'.

Hope this helps."