我正在使用InDesign Server和基于soap的应用程序通过服务器进行通信。
我能够获得indd文档中使用的所有表单字段,并且还能够替换其文本/值。
现在,我希望获得indd doc中使用的所有图像,并在我的应用程序中提供上传图像选项,并能够通过用户选择的图像替换图像。任何人都可以提供识别和替换图像的脚本。
其次,为了向后兼容,我有一个indd doc的idml。现在如何导入或打开此idml并通过脚本将其转换为indd doc。
第三,如何将pdf转换为indd doc。
请帮我解决这些脚本。
答案 0 :(得分:0)
将IDML文件转换为.indd文件,只需将其打开并保存即可
set theIDMLFile to "Macintosh HD:Users:me:Desktop:someidmlfile.idml"
tell application "InDesignServer"
set convertedIDMLDoc to open alias theIDMLFile
tell convertedIDMLDoc
save to ((characters 1 thru -6 of theIDMLFile) & ".indd") as string
end tell
end tell