1

単純なコマンドライン実行可能ファイルを作成し、それを含むフォルダーを開くたびに起動するようにしています。AppleScript を開くフォルダー アクションを使用しています。これまでのところ、AppleScript は次のとおりです。

    tell application "Finder"
        open document file "Feed the Beast Launcher" of folder "Feed The Beast" of folder "Desktop" of folder "Matthew" of folder "Users" of startup disk
    end tell

実行可能ファイルは次のとおりです。

    export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
    java -jar ~/Desktop/Feed\ The\ Beast/FTB_Launcher.jar

手伝ってくれますか?

4

1 に答える 1

0

Jar Bundler.appを使用して、jarファイルのスタンドアロンアプリを作成し、次のようなものを使用します。

tell application "FTB_Launcher.app" to activate

アプリを起動します。

于 2012-12-27T15:11:29.503 に答える