Skip to content

Monthly Archives: May 2008

Center a Window

Found a useful posting at Coding AppleScript on centering windows in AppleScript Studio.

tell every window to center

I used this tip to figure out how to automatically center my splash window when the application first opens:

on will open theObject
if the name of theObject is "homeWindow" then
tell theObject to center
end if
end will open

This gets called before the [...]

New Applescript Blog

Is it just me, or are there very few weblogs out there for people trying to learn applescript? There are none, that I can find, which are dedicated to learning Applescript Studio.
I am only an amateur when it comes to programming and I am new to applescript. However, when I’m not doing my historical research [...]