Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'A replacement script to greatly speed Clutter' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A replacement script to greatly speed Clutter
Authored by: adamh on Jan 16, '05 12:52:15AM
Fix for compilations.

Change this:
     repeat with aTr in (search pl for theAlbum only albums)
        if the artist of aTr is equal to theArtist then
           duplicate aTr to AlbP
        end if
     end repeat
To this:
    set noArtist to (theArtist is equal to null)
    set search_trackz to (search pl for theAlbum only albums)
    repeat with aTr in search_trackz
        if noArtist then
	    duplicate aTr to AlbP
	else
	    if the artist of aTr is equal to theArtist then
		duplicate aTr to AlbP
	    end if
	end if
    end repeat


[ Reply to This | # ]