iTunesで元ファイルも削除

ライブラリーの削除と元ファイルの削除を実行します。
普通にやると元ファイルをどうするかのダイアログが出るので、その手間を省きたいだけ。
ライブラリー上で削除したい項目を選択してから実行してください。

スクリプトエディタで開く

tell application “iTunes”
d1(location of selection) of me
ignoring application responses
delete selection
end ignoring
end tell

on d1(a3)
ignoring application responses
tell application “Finder” to delete a3’s items
end ignoring
end d1