답변:
AppleScript에서 다음 코드를 사용하여 변경하려는 파일을 선택하고 실행하십시오. 아래의 '설명'을 변경하면 '작곡가'또는 '의견'과 같은 다른 정보를 업데이트하기 위해 코드를 재사용 할 수 있습니다.
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