Yarp
Join Date: May 2004
Location: Road Warrior
|
(I think that's an acceptable way to label this thread?)
Is there a way to select a handful of songs and have them all get branded track #s automatically, like Say I select a whole album, and I want to get them tracked 1-12 without having to do each one individually. |
quote |
ಠ_ರೃ
Join Date: May 2004
Location: Minnesota
|
You might have to wait for Automater in Tiger to do this. I'm sure you could also write a script to do it, but I have zero knowledge of AppleScript and I've never seen a guide that I've been able to follow.
|
quote |
Member
Join Date: Jun 2004
|
For what it's worth.. I did this in like 5 minutes and barely tested it... it does it track by track so it's a bit slow... I tried to get it to change them all at once, but my AppleScript's rusty so I'm not completely sure how to do it. Standard warning about how this may delete your files or screw up your songs. And this isn't a joke warning, this might actually screw up the ID3 tags of your songs... Enjoy
![]() Code:
tell application "iTunes"
if selection is not {} then
copy (track number of selection) to theTrackCount
copy selection to theTracks
else
return
end if
end tell
copy theTrackCount's length to theTrackCount
repeat with i from 1 to theTrackCount
tell application "iTunes"
copy (a reference to item i of theTracks) to theTrack
copy theTrackCount to track count of theTrack
copy i to track number of theTrack
end tell
end repeat |
quote |
Member
Join Date: Jun 2004
|
Quote:
If anything, it would have to be a built-in iTunes feature, which would be so great. But the thing is, how would you arrange them in order if there's no track number? iTunes always lists things in a particular order, like by name or something, so I don't know how you would order anything if you would have to insert a track number anyway. ![]() I always change things manually, unless it affects several songs - I'll select what I want (usually a whole album or genre) and Get Info on them. I appreciate doing that to make sure that several songs/albums/whatever have the same attributes. |
|
quote |
Yarp
Join Date: May 2004
Location: Road Warrior
|
Quote:
but like, a lot of times I end up with albums that are arranged correctly but, have no track numbers, and just selecting them and having those 10 number themselves 1-10 automatically would be groovy. |
|
quote |
Member
Join Date: Jun 2004
|
Quote:
I can't say that I've ever had albums with no track numbers (unless they were from those Napster days ...) but I can say that I've imported CDs that had mixed up the song titles, but were actually in the correct order. |
|
quote |
Posting Rules | Navigation |
|
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Getting iTunes to recognize a USB CD Burner | ShiggyMiyamoto | Third-Party Products | 13 | 2005-09-14 15:33 |
iPod Evaluation | Messiahtosh | Apple Products | 14 | 2005-01-18 13:36 |
Itunes help | cyrusmekon | Genius Bar | 5 | 2004-11-23 23:09 |
iTunes and FUS | torifile | Apple Products | 3 | 2004-09-19 11:12 |
How much have you spent in the iTunes Music Store? v4 | Paul | Apple Products | 16 | 2004-06-10 15:32 |