iTunes window
iTunes window
- Subject: iTunes window
- From: cheshirekat <email@hidden>
- Date: Sat, 31 May 2003 10:06:52 -0600
Since upgrading to iTunes 4.01, I've noticed that my window position and
size change every time I re-start iTunes. I usually fill the screen with
the iTunes Browser but when I restart it, it's a very small little window
in the middle of the monitor.
I looked through the preferences, but didn't find a new option/setting
for the windows. I find it irritating and decided to create an
AppleScript to reset my iTunes Browser window as I like it.
Here's the script I'm working with.
** begin script
tell application "iTunes"
set the preferredBounds to {30, 20, 1225, 780}
set the frontWinName to the name of window 1
if the frontWinName is "iTunes" then
set the bounds of the front window to the preferredBounds
end if
end tell
** end script
I would like to be able to set the bounds of the iTunes browser window,
even if it's not frontmost. Sometimes the equalizer window is open. Any
one know of a simple way to set the bounds of a window that is not the
front window in iTunes?
Thanks!
cheshirekat
--
* 867 PowerBook G4 * OS X 10.2.5 * 768 MB Ram *
* Addictions: iTunes 4 * WarCraft * The Sims *
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.