09/04/09 06:52:21 ReqJMEbFP
>>264
アップルスクリプトで出来る
tell application "iTunes"
if selection of front browser window is {} then
display alert "歌詞を消す曲を選択してください" as critical buttons "Cancel"
else
set FI to fixed indexing
set fixed indexing to true
set selectedTracks to selection
try
repeat with aTrack in selectedTracks
tell aTrack
set lyrics to ""
end tell
end repeat
end try
set fixed indexing to FI
display alert "作業が終了しました" as critical buttons "OK"
end if
end tell