07/05/31 13:19:43 OPvQwZSL0
>>515
Script Editorで
try
tell application "iTunes"
activate
-- get a list of track references
set these_tracks to the selection of browser window 1
if these_tracks is {} then error "No tracks are selected in the front window."
display dialog "Kind of the selected video tracks?" buttons {"Cancel", "music video", "TV show"} default button 3
if the button returned of the result is "music video" then
set video kind of the selection to music video
else if the button returned of the result is "TV show" then
set video kind of the selection to TV show
end if
end tell
on error error_message number error_number
if the error_number is not -128 then
tell application "iTunes"
activate
beep
display dialog error_message buttons {"Cancel"} default button 1
end tell
end if
end try
というスクリプトを作成しておく。
変更したいトラックをiTunesで選択し、スクリプトを実行。
スクリプトメニューに登録しとくと便利。