Antworten:
Verwenden Sie den folgenden Code in AppleScript, wählen Sie die Dateien aus, die Sie ändern möchten, und führen Sie sie aus. Sie können den Code zum Aktualisieren anderer Informationen wie "Komponist" oder "Kommentar" wiederverwenden, indem Sie die nachstehende "Beschreibung" ändern.
tell application "iTunes"
set sel to selection
if sel is not {} then
repeat with this_track in sel
try
tell this_track to set description to ""
end try
end repeat
end if
end tell