Mobile app version of vmapp.org
Login or Join
Smith574

: Select all text across multiple stories I need to change all text in all the stories in an indd file from "Adobe Paragraph Composer" to "Adobe World-ready Paragraph Composer". Can it be done

@Smith574

Posted in: #AdobeIndesign #IndesignScripting

I need to change all text in all the stories in an indd file from "Adobe Paragraph Composer" to "Adobe World-ready Paragraph Composer".

Can it be done through UI or I have to use scripts. In the latter case, how do you set scope to all stories and change the paragraph composer?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Smith574

1 Comments

Sorted by latest first Latest Oldest Best

 

@Cody3331749

I think it is not possible to select all stories at once with the UI.
You will have to iterate through all paragraphs in all textframes in all stories or the selected story. Should be something like (not tested):

edit: remove textframes as suggested by Jongware

for (var s = 0; app.documents[0].stories.length; s++) {
for (var p = 0; p < app.documents[0].stories[s].paragraphs.length; p++) {
app.documents[0].stories[s].paragraphs[p].composer = "Adobe World-ready Paragraph Composer";
}
}

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme