I have not read the iLife ’11 guide you speak of, but I presume it includes installing the loops which are no longer included on the iLife ’11 media.
I built a package to re-index all of the loops using the below script and the ALPIndex.app which I presumably picked out from iLife ’11 or Logic Studio 2.0 somewhere.
[code]#!/bin/sh
ALPINDEX=/private/tmp/ALPIndex.app/Contents/MacOS/ALPIndex
CHROOT=/usr/sbin/chroot
FIND=/usr/bin/find
APPLE_LOOPS_DIRECTORY=”/Library/Audio/Apple Loops/Apple”
$CHROOT “$DSTVOLUME” $FIND “$APPLE_LOOPS_DIRECTORY” -depth 1 -type d | while read directory
do
$CHROOT “$DSTVOLUME” $ALPINDEX “$directory”
done
[/code]
It seems to do the trick for me. 🙂
Comments are closed