Reply To: Scripting: In a loop, find consecutive paragraphs with the same style

Home Page / Forums / General InDesign Topics (CLOSED) / Scripting: In a loop, find consecutive paragraphs with the same style / Reply To: Scripting: In a loop, find consecutive paragraphs with the same style

#14402072
Ian
Member

Update: Got the conversion to fillable form field working:


    // Convert text box to fillable form text field
    app.select(myNewTextFrame);
    var convertToTextField = app.menuActions.itemByName("$ID/$$$/Command/TextField");  // Menu command "Convert To Text Field":
    // If available:
    if (convertToTextField.enabled) {
      convertToTextField.invoke();
    };

This article was last modified on March 27, 2024

Comments (0)

Loading comments...