Perl到InDesign CS4示例(OS X)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Perl到InDesign CS4示例(OS X)相关的知识,希望对你有一定的参考价值。
This example demonstrates a way to control Adobe InDesign from Perl. Tested on MacOS X 10.5.7 and INDD.
#!/opt/local/bin/perl -w # ^^^ your hashbang may vary use strict; use warnings; `/usr/bin/osascript <<-HereDoc tell application "Adobe InDesign CS4" do script " // start your javascript code controlling InDesign here var myObject = app.selection[0]; // grabs selected object in INDD alert(myObject); // show object kind // javascript code ends here " language javascript end tell HereDoc`;
以上是关于Perl到InDesign CS4示例(OS X)的主要内容,如果未能解决你的问题,请参考以下文章
如何在 OS X Yosemite 上的 Apache 2.4 中安装 mod_perl 2.0.9?
使用 perl 与正在运行的 OS X 应用程序通信 [关闭]