dougscripts.com

January 2024

September 17 2009 - 11:40 am

Can They Fix This, Please?

Why does this dialog in AppleScript Editor still prevent me from seeing the changes? I just know there's something important behind there...

I see this about half a dozen times a day and it drives me crazy.

September 16 2009 - 9:58 am

UPDATED: CDDB Safari Kit v3.1

These two AppleScripts, "CDDB Safari" and "CDDB Tracks to iTunes via Safari", assist in finding and retrieving Album track information, Album, Artist, and Year from Gracenote's CDDB website using Apple's Safari browser. CDDB Safari Kit v3.1 addresses some minor changes in Gracenote's page formatting.

September 16 2009 - 8:51 am

Get Current Track from iTunes LP

When you're playing an iTunes LP the Command-L shortcut to reveal/select the track in iTunes doesn't work. Unless.

Place the iTunes LP "booklet" in its own playlist (select it and press Shift-Command-N) and open that playlist in its own window by double-clicking the name of the playlist (or choose "Open in New Window" by Control-clicking the playlist name). Double-click the booklet to open the iTunes LP in the playlist window just opened. Now you have access to the main iTunes browser while the iTunes LP stuff is playing in the separate window.

This script will emulate the Command-L shortcut providing the iTunes LP is in a separate window:

tell application "iTunes"
	if player state is stopped then return
	set pID to (get current track's persistent ID)
	set mLib to (some playlist whose special kind is Music)
	reveal (some track of mLib whose persistent ID is pID)
end tell


September 14 2009 - 6:06 pm

iTunes Library Manager Progress

An update to iTunes Library Manager that is compatible with iTunes 9 will be released on Wednesday. Many thanks to beta-testers Karl, Brian, Andrew, and David for the help on short notice--and for putting their music libraries on the line.

September 11 2009 - 11:46 am

iTunes Library Manager No Go with iTunes 9

iTunes Library Manager will not work with iTunes 9. I am working on a fix and hope to have an update to release next week.

September 11 2009 - 9:17 am

Need More Sharing From Home Sharing?

If you find the new iTunes 9 feature "Home Sharing" a bit lacking then you may be interested in this remote management compendium I put together a few months ago. If you're ready to really get your hands dirty with things like ssh, rsync, launchd, and more, you can design a system to copy/backup/add any iTunes files to other iTunes apps on your network in the background.

September 10 2009 - 9:16 pm

UPDATED: Art to Desktop v2.1

This Stay-Open applet will continuously update your desktop picture to the album artwork of the currently playing track. Art to Desktop v2.1 is just spruced up to work better with Snow Leopard, other minor enhancements.

September 10 2009 - 7:49 pm

Dead Tracks a Problem for Genius?

There are one or two discussions going on at the Apple Discussions boards about users being unable to properly update Genius in iTunes 9, which apparently prevents Genius Mixes from kicking in. Or something. Some posters have gotten fruitful results after eliminating any dead tracks with Super Remove Dead Tracks.

Download and install the script. Turn Genius off. Run the script. Turn Genius back on.

September 10 2009 - 12:12 pm

Smart Playlists Are Not 'Scriptable

Getting an avalanche of email informing me that Smart Playlists in iTunes 9 can use boolean-like operators when defining criteria. While that's great and all, Smart Playlists cannot be constructed with AppleScript so it has zero impact on scripting.

September 10 2009 - 12:02 pm

Join Together Needs QTP7 in Snow Leopard

Several users have emailed about this: If you have upgraded to Snow Leopard and are using Join Together you will need to install QuickTime Player 7. And be sure to get the latest version of Join Together.

QuickTime Player 7 is in "Optional Installs" on your Leopard Install disc. Open this folder, run "Optional Installs.mkpg", and make sure "QuickTime Player 7" is checked.

After installing QTP7 (or if it is already installed), you can find it in /Applications/Utilities/. Activate it and run it long enough for it to establish a full launch, and then quit it. This will be enough activity for its preferences file to be created, which Join Together needs to locate.

Site contents © 2001 - 2024 (that's right: 2001) Doug Adams and weblished by Doug Adams. Contact support AT dougscripts DOT com. About.
All rights reserved. Privacy.
AppleScript, iTunes, iPod, iPad, and iPhone are registered trademarks of Apple Inc. This site has no direct affiliation with Apple, Inc.
The one who says "it cannot be done" should not be interrupting the one who is doing it.