Copy link to clipboard
Copied
We have received an ID CS4 document, which has "Adobe Single-Line Composer" instead of "Adobe Paragraph Composer". We need to change the same globally through the script on the active document. Kindly help me to do it successfully.
Copy link to clipboard
Copied
Hi,
Here is code for you
var myDoc = app.activeDocument;
myStyles=myDoc.paragraphStyles;
for (a=1;a<myStyles.length;a++)
{
myStyles.composer = "Adobe Paragraph Composer";
}
Shonky
Find more inspiration, events, and resources on the new Adobe Community
Explore Now