Come faccio a copiare la posizione di una traccia nella sezione "Commenti" di iTunes?

0

Non capisco perché questo non funzioni. Se qualcuno sa come risolvere questo problema:

tell application "iTunes"
  copy location of track 1 of playlist "Test" to Comments
end tell

Applescript ora mostra un errore ma quando vedo in iTunes, il campo "Commenti" è ancora vuoto.

Grazie!

    
posta Carlos Jesus Caro 14.10.2012 - 03:03
fonte

2 risposte

1

Perché copi la posizione sulla variabile Comments .

Ecco come inserire la posizione nel tag comment .

tell application "iTunes"
  tell track 1 of playlist "Test" to set comment to (its location as text)
  -- or set comment  of track 1 of playlist "Test" to (get location of track 1 of playlist "Test") as text
end tell
    
risposta data 14.10.2012 - 03:27
fonte
1

Questo dovrebbe fare il trucco:

tell application "iTunes"
    set theLocation to location of track 1 of playlist "Test"
    set the comment of track 1 of playlist "Test" to POSIX path of theLocation as string
end tell

Il as string è la chiave qui, altrimenti i tipi sono incompatibili.

Se lo vuoi come un unico rivestimento, puoi fare:

tell application "iTunes" to copy the POSIX path of (location of track 1 of playlist "Test" as string) to comment of track 1 of playlist "Test"

Se vuoi che i vecchi percorsi in stile Mac con i due punti ( Macintosh HD:Users:rob:Music ) anziché lo stile Unix ( /Users/rob/Music ), puoi rimuovere POSIX path of parti di uno di questi.

    
risposta data 14.10.2012 - 03:28
fonte

Leggi altre domande sui tag