通过Java发送ExtendScript

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过Java发送ExtendScript相关的知识,希望对你有一定的参考价值。

Just a simple code snippet that uses cmd to send an ExtendScript to an application like Photoshop® or InDesign®.
  1. // photoshop's application directory path has been declared as an environment variable - so we don't need the full path here
  2. String app = "photoshop";
  3. String scriptpath = ("c:/script/extendscript/example.jsx").replace('/', '\');
  4. String[] commands = new String[]{"cmd", "/c", "start", """", app, scriptpath};
  5. try { Runtime.getRuntime().exec(commands); } catch (IOException e) { e.printStackTrace(); }

以上是关于通过Java发送ExtendScript的主要内容,如果未能解决你的问题,请参考以下文章

在 ExtendScript for Flash CS5 中调试 jsfl

我应该如何使用 Outlook 发送代码片段?

Extendscript 的单元测试

将字符串数据从Activity发送到片段[关闭]

如何使用 CEP / ExtendScript 在 InDesign 中绘制图形线?

After Effects / ExtendScript:使用库和导入 .jsx 文件?