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.
  1. #!/opt/local/bin/perl -w
  2. # ^^^ your hashbang may vary
  3.  
  4. use strict;
  5. use warnings;
  6.  
  7.  
  8. `/usr/bin/osascript <<-HereDoc
  9.  
  10. tell application "Adobe InDesign CS4"
  11. do script "
  12.  
  13. // start your javascript code controlling InDesign here
  14.  
  15. var myObject = app.selection[0]; // grabs selected object in INDD
  16. alert(myObject); // show object kind
  17.  
  18. // javascript code ends here
  19.  
  20. " language javascript
  21. end tell
  22.  
  23. HereDoc`;

以上是关于Perl到InDesign CS4示例(OS X)的主要内容,如果未能解决你的问题,请参考以下文章

如何在 OS X Yosemite 上的 Apache 2.4 中安装 mod_perl 2.0.9?

使用 perl 与正在运行的 OS X 应用程序通信 [关闭]

我可以在 OS X 10.5 上使用 dtrace 来确定我的哪个 perl 子程序导致的内存分配最多吗?

perl google soap示例

AE CS4怎么让图层翻转?

Flash SDK 到 CS4 的转换技巧