Skip to main content
Blog

automating applescripts

By Monday, March 20, 2006No Comments

it’s just that easy….

on run {input, parameters}
tell application “Finder”
open application file “MaxMSP Runtime 4.5.app” of folder “MaxMSP 4.5” of folder “Applications” of startup disk
end tell
return input
end run

on run {input, parameters}
tell application “MaxMSP Runtime 4.5”
quit
end tell
return input
end run

Leave a Reply