On Mar 17, 8:06 pm, paul_craven <
paul_cra...@hotmail.com> wrote:
> In an ideal world, I would like to end up with a playlist for every
> album in my iTunes library in the following format:
>
> "$Artist - $Album"
The source code is included in the zip file. However, after editing
the source, you'll have to run it using perl directly (i.e. you can't
use the provided EXE anymore). So, you'll need to have Perl
installed. Download and install
http://downloads.activestate.com/ActivePerl/Windows/5.10/ActivePerl-5.10.0.1004-MSWin32-x86-287188.msi
You'll need to edit "
itunes_album_playlists.pl". You can use any text
editor (Notepad works fine). On line 83, change
my $album_playlist = $iTunes->CreatePlaylist("$album");
to
my $album_playlist = $iTunes->CreatePlaylist("$artist - $album");
Then, you'll need to run
itunes_scripts.pl. You'll get a menu of
scripts to run, select "
itunes_album_playlists.pl" (should be number
3). Then you'll be prompted to run it; type "y" then enter.
That's pretty much it!
HTH,
Rob