Resizing Itunes Window with Applescript
This weekend my girlfriend and I moved all the stuff I had in my private office/homestudio out, to create a room for our son. Because of this my old mac was put in the living room, and is now a primitive media center with the TV as it's only screen. The resolution as a result has changed to something significantly lower, and there are no longer two screens. As a result the Itunes window was too big, and I was not able to resize it, since the area where this is possible was outside the viewable area of the screen, no mather what I did.
I decided it was time for some AppleScript to solve this problem.
tell application "iTunes"
set bounds of window 1 to {1, 1, 400, 400}
end tell
ps - had an old cordless windows keyboard and mouse - it is a bit weird trying to figure out which keys do what...
