PhotoshopのJavaScriptファイル(.jsx)をシェルスクリプト/コマンドラインから実行する(Mac)
sample.shと同一階層にあるsample.jsxをPhotoshop CS5で実行する例。
sample.sh
#!/bin/sh
dirpath=$(cd $(dirname $0); pwd)
jsxpath="${dirpath}/sample.jsx"
photoshop='Adobe Photoshop CS5'
osascript -e "tell application \"${photoshop}\" to activate & do javascript file \"${jsxpath}\""
sample.jsx
alert('hello');
ただ、自分の環境では53:136: execution error: No result was returned from some part of this expression. (-2763)
というAppleScriptのエラーが起こってしまうみたい。
どうすればいいのかな?
また他のAdobe製品もだいたい同じでいけるっぽいけど若干コードが異なったりパスの扱いが違う模様。
Author And Source
この問題について(PhotoshopのJavaScriptファイル(.jsx)をシェルスクリプト/コマンドラインから実行する(Mac)), 我々は、より多くの情報をここで見つけました https://qiita.com/hanamura/items/7e1488bba3ae16bdc0e5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .