09/04/09 19:43:18 ReqJMEbFP
>>270
あれ?文法を間違ったかな?これでどう?
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
repeat with aTrack in selectedTracks
tell aTrack
try
set lyrics to ""
end try
end tell
end repeat
set fixed indexing to FI
display alert "作業が終了しました" as critical buttons "OK"
end if
end tell