August 27 '09 - 7:19 am
I know I’m going to be repeating this a lot: as of Mac OS 10.6 the Script Editor application has been renamed AppleScript Editor and has been relocated from the /Applications/AppleScript/ to the /Applications/Utilities/ folder.
Also, Rosetta, which allows PowerPC-compiled applications and AppleScripts to run on Intel Macs, is an optional install. Most AppleScripts on this site are either Intel-compiled or Universal Binary, but some older scripts may not run without Rosetta (especially if you had downloaded older versions of them or those that I never got around to updating as Universal Binary). So when performing your installation of Snow Leopard it’s probably a good idea to include Rosetta.
posted in AppleScript, AppleScript Editor, Rosetta, Snow Leopard
August 24 '09 - 10:27 pm
Join Together automates the process of joining the files of selected iTunes tracks together with QuickTime and exporting them as a single AAC Music or Audiobook file/track. Optionally, you can then create a “chapterized” audio file of the exported AAC file with pointers to the individually joined tracks.
Version 5.4 of Join Together provides compatibility with Mac OS X 10.6 Snow Leopard, addresses issues with multiple libraries, and has minor GUI and performance enhancements.
More information and download is here.
posted in Join Together, QuickTime, Updates, iTunes
August 14 '09 - 4:35 pm
Over the past few weeks I’ve been mulling how to proceed with development of my shareware apps, and, I suppose, AppleScript development in general. With the imminent release of Snow Leopard, which can only be run on Intel Macs, I have been researching who the audience for this site is.
According to Google Analytics, over the past month (July 10 through August 10) 90.53% of Mac visitors have an Intel Mac, 8.73% are on a PPC, and the remainder are characterized as “not set”. (update: I probably should have included originally that this site had 87,347 Mac visitors in that time.)
Further, of the Intel users 92.54% are on Leopard, 4.58% on Tiger, and the remainder either on 10.6 already or “not set”.
So I guess there may not be that much to mull. I’ll keep you posted.
posted in Leopard, Site News, Snow Leopard, Tiger
August 11 '09 - 10:44 am
A couple few days ago I posted a script here that would ping the Radio Paradise stream until its server accepted the connection, suppressing the error dialog that would appear when a connection was denied. Well, that was the wrong version of the script. Here is the correct version, and the one I fire up every morning. You must select a radio stream track first, then run the script:
tell application "iTunes"
if selection is {} then return
set strm to (item 1 of selection)
if (get class of strm) is not URL track then return
repeat
try
play strm
exit repeat
on error m number n
delay 15
end try
end repeat
end tell
The earlier script used the open location command, errors from which could not be defeated with the try block.
posted in AppleScript, Managing Tracks, Missing Menu Commands, Snippets, iTunes
August 10 '09 - 9:55 am
Music Folder Files Not Added is an application that will list the file paths of the files in your designated “iTunes Music” folder which are not in iTunes’ library. Additionally, you can select a different parent folder and its contents will be compared to the iTunes library. Includes options to Add a selection of found files to iTunes or move them to the Trash.
This latest version fixes a problem with file paths containing single-quote characters.
posted in AppleScript, Managing Files, Updates, iTunes
August 10 '09 - 9:49 am
Since LyricWiki is no longer able to provide lyrics to applications from its API, I put a workaround in Lyrics Via LyricWiki. This script will use the name and artist of the single selected or playing track as the basis for a SOAP query to LyricWiki.org; fruitful results will be displayed so you can choose to apply the lyrics to the particular track.
posted in AppleScript, Managing Track Info, Updates, iTunes, lyrics
August 8 '09 - 11:08 am
If you run an application or script which uses LyricWiki to supply lyrics (such as Lyrics Via LyricWiki) you will probably see this message instead of the lyric results you expected:
Unfortunately, due to licensing restrictions from some of the major music publishers we can no longer return lyrics through the LyricWiki API (where this application gets some or all of its lyrics)…(Please note: this is not the fault of the developer who created this application, but is a restriction imposed by the music publishers themselves.)
I could have guessed this clampdown from publishers was coming.
posted in Music Business, lyrics