: 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
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?
More posts by @Smith574
1 Comments
Sorted by latest first Latest Oldest Best
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";
}
}
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.