A few years ago, I setup an applescript to help me convert a FLAC file into Apple Lossless automatically which worked very well. Ever since I upgraded to OSX Mavericks, my script is no longer working. The "Max" program opens and inputs the FLAC files appropriately, but it never starts converting. Any ideas what could be going on?
Thanks.
The script is listed below:
Thanks.
The script is listed below:
Code:
tell application "Max" to activate
tell application "Max"
convert theFile
end tell
delay 1
tell application "System Events"
tell process "Max"
click button "Convert" of toolbar of window "File Conversion"
set encoderOpen to true
repeat while encoderOpen is true
try
window "Encoder"
on error
set encoderOpen to false
end try
end repeat
end tell
end tell
Last edited by a moderator: