encode more simply with iTunes

This program helps you to encode audiofiles more simply with iTunes.
Drag and Drop (an) audiofile/s, a folder with audiofiles or an audio-cd on this script to encode it with iTunes.

OS version: MacOS

-- drag and drop an audiofile or an audio-cd on this script to encode it with iTunes.
-- if you drop a file on the script, it will encode it with iTunes in your saved converting-settings.
-- if you want to change the settings, you have to change them in iTunes.
-- for improves please mail to: nicki.schaefer@epost.de

on open theAudioFile
	tell application "iTunes" --it might be that you have to show the script where your iTunes is located.
		convert theAudioFile
	end tell
	display dialog "Your file/s have been encoded!" buttons "OK" default button "OK" with icon 1 giving up after 8
end open

-- if you try to open the script, this dialog appears.
on run
	display dialog "Drag and Drop an Audiofile or an Audio-CD to encode it with iTunes!" buttons {"OK"} default button "OK" with icon 1
end run