Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I use AppleScript/Automator to make a service that'll make an empty AppleScript file in the selected folder?

share|improve this question

1 Answer

up vote 0 down vote accepted

You want to use the command line utility osacompile. The following will create a blank applescript on your desktop called "test.scptd"

set applescriptCode to ""
set applescriptPath to (path to desktop as text) & "test.scptd"

do shell script "echo " & applescriptCode & " | osacompile -o " & quoted form of POSIX path of applescriptPath
share|improve this answer
Thanks a lot, but I keep getting this error: error "Finder got an error: osacompile: couldn't write to file /Library/Application Support/App/Script.scpt: No such file or directory" number 1 – Seb Jachec Oct 29 '10 at 17:56
The error sounds like there's something wrong with your path. Since you didn't show any of your code I can't be sure. I'm sure my code works as-is so whatever you changed is what got messed up. – regulus6633 Oct 31 '10 at 3:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.