将所有InDesign书籍导出为文本

时间:2015-11-05 11:51:54

标签: text adobe-indesign

我试图将图书中的所有文档导出为纯文本格式 我已经尝试过" ExportAllStories"已经在InDesign中的脚本,当然它只会获取当前文档。我还从Rorohiko Workflow Resources下载了一个文本导出器,只能获取一个文档。
有没有人知道我可以使用的任何其他程序或插件?

1 个答案:

答案 0 :(得分:0)

这是一个AppleScript,它将处理书中的所有文档:

tell application "Adobe InDesign CS6"
    set theFiles to file path of book contents of book 1
    repeat with aFile in theFiles
        set theDocument to open aFile
        --export content script code here
    end repeat
end tell