Indesign 中的错误 运行 jsx 文件将每个文本框架导出为 .txt 文件

Error Running jsx file from Indesign to export each text frame as a .txt file

去年我的同事帮助为 Indesign 构建了一个脚本。

后来,系统更新后我们没有脚本了,因为重新安装了Indesign CS6,我们只有下面的版本。

在 Adob​​e Indesign 中使用此代码导出以特定段落样式表开头的每个文本框 "PRODUCT HEADING" 但是当我 运行 脚本时收到错误消息...

脚本基于与 InDesign 捆绑在一起的 ExportAllStories.jsx,加上一些在线发现的模组。

//ExportAllStories.jsx
//An InDesign CS6 JavaScript
/*  
@@@BUILDINFO@@@ "ExportAllStories.jsx" 3.0.0 15 December 2009
*/
//Exports all stories in an InDesign document in a specified text format.
//
//For more on InDesign scripting, go to http://www.adobe.com/products/indesign/scripting/index.html
//or visit the InDesign Scripting User to User forum at http://www.adobeforums.com
//
main();
function main(){
    //Make certain that user interaction (display of dialogs, etc.) is turned on.
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
    if(app.documents.length != 0){
        if (app.activeDocument.stories.length != 0){
            myDisplayDialog();
        }
        else{
            alert("The document does not contain any text. Please open a document containing text and try again.");
        }
    }
    else{
        alert("No documents are open. Please open a document and try again.");
    }
}
function myDisplayDialog(){
    with(myDialog = app.dialogs.add({name:"ExportAllStories"})){
        //Add a dialog column.
        myDialogColumn = dialogColumns.add()    
        with(myDialogColumn){
            with(borderPanels.add()){
                staticTexts.add({staticLabel:"Export as:"});
                with(myExportFormatButtons = radiobuttonGroups.add()){
                    radiobuttonControls.add({staticLabel:"Text Only", checkedState:true});
                    radiobuttonControls.add({staticLabel:"RTF"});
                    radiobuttonControls.add({staticLabel:"InDesign Tagged Text"});
                }
            }
        }
        myReturn = myDialog.show();
        if (myReturn == true){
            //Get the values from the dialog box.
            myExportFormat = myExportFormatButtons.selectedButton;
            myDialog.destroy;
            myFolder= Folder.selectDialog ("Choose a Folder");
            if((myFolder != null)&&(app.activeDocument.stories.length !=0)){
                myExportAllStories(myExportFormat, myFolder);
            }
        }
        else{
            myDialog.destroy();
        }
    }
}
//myExportStories function takes care of exporting the stories.
//myExportFormat is a number from 0-2, where 0 = text only, 1 = rtf, and 3 = tagged text.
//myFolder is a reference to the folder in which you want to save your files.
function myExportAllStories(myExportFormat, myFolder){
    for(myCounter = 0; myCounter < app.activeDocument.stories.length; myCounter++){
        myStory = app.activeDocument.stories.item(myCounter);
        myID = myStory.id;
        switch(myExportFormat){
            case 0:
                myFormat = ExportFormat.textType;
                myExtension = ".txt"
                break;
            case 1:
                myFormat = ExportFormat.RTF;
                myExtension = ".rtf"
                break;
            case 2:
                myFormat = ExportFormat.taggedText;
                myExtension = ".txt"
                break;
        }
        if (myStory.paragraphs[0].appliedParagraphStyle.name == "PRODUCT HEADING"){

              myFileName = myFileName.replace(/\s*$/,' ');
              myFileName2 = myFileName.replace(/\//g, ' ');
              myFilePath = myFolder + "/" + myFileName2;
            myFile = new File(myFilePath);
            myStory.exportFile(myFormat, myFile);
        }
    }
}

这会导致

出错
        if (myStory.paragraphs[0].appliedParagraphStyle.name == "PRODUCT HEADING"){

如有任何建议,我们将不胜感激。

在 Indesign 文件中肯定有一个样式为 PRODUCT HEADING(全部大写)的文本块。我们 运行 像以前一样设计 CS6

谢谢!

您的问题很可能出在这部分:myStory.paragraphs[0]。如果故事没有段落,这会给你一个错误。 您可以在 运行 这一行之前添加一个条件,例如:

if(myStory.paragraphs.length){
    if (myStory.paragraphs[0].appliedParagraphStyle.name == "PRODUCT HEADING"){

            myFileName = myFileName.replace(/\s*$/,' ');
            myFileName2 = myFileName.replace(/\//g, ' ');
            myFilePath = myFolder + "/" + myFileName2;
            myFile = new File(myFilePath);
            myStory.exportFile(myFormat, myFile);
        }
}