To call AppleScript from Python, I use the "appscript" bridge:

http://appscript.sourceforge.net/

What can I use to call AppleScript from Java on Mac OS X 10.6+?

link|improve this question

50% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Here's an approach that works for me for Java on Mac OS X 10.6+. This example script fetches the creation date of the current folder:

import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;
import java.io.File;
import java.util.Date;
import java.util.GregorianCalendar;

public class ScratchSpace {

    public static void main(String[] args) throws ScriptException {
        System.out.println("creationDate = " + getFileCreationDate(new File(".")));
    }

    private static Date getFileCreationDate(File file) throws ScriptException {
        final String script = "set myfile to \"" + file.getAbsolutePath() + "\"\n" +
                "set myinfo to info for myfile\n" +
                "creation date of myinfo";
        ScriptEngine scriptEngine = new ScriptEngineManager().getEngineByName("AppleScript");
        final GregorianCalendar result = (GregorianCalendar) scriptEngine.eval(script);
        return result.getTime();
    }

}
link|improve this answer
This is not an Apple event bridge like AppScript but it's the best answer I got. Thanks. – Maroloccio Mar 21 at 14:57
feedback

Google is your friend... http://macdevcenter.com/pub/a/mac/2003/02/25/apple_scripting.html

link|improve this answer
You answer is incorrect, I specified I needed to do this on 10.6 Snow Leopard. – Maroloccio May 28 '11 at 10:56
feedback

I don't know Java, but anything that can execute a command line tool can execute an AppleScript using osascript. I use it to execute AppleScripts from PHP and vim scripts.

link|improve this answer
I am looking for an Apple event bridge like Appscript, not a "Runtime.exec()" -like workaround. Appscript in Python allows things like: app('TextEdit').documents['ReadMe'].paragraphs[1].get(). – Maroloccio May 29 '11 at 3:46
feedback

Your Answer

 
or
required, but never shown

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