用于识别和替换in​​dd文档图像的InDesign脚本

时间:2015-11-18 08:35:30

标签: adobe-indesign indesign-server

我正在使用InDesign CS6服务器来更改.indd文件的文本和图像。

虽然我有更改文本的scipt但我无法更改indd文档的图像。

有些人可以通过脚本帮助我识别indd doc中使用的所有图像,然后用用户选择的图像替换这些图像。

感谢!!!!

1 个答案:

答案 0 :(得分:0)

假设您有一个包含一个链接图形的简单布局,以下脚本会将该图形重新链接到另一个文件:

set replacementFile to "Macintosh HD:Users:me:Desktop:somefile.png"

tell application "InDesignServer"
    tell document 1
        relink link 1 to alias replacementFile
    end tell
end tell