Paragraph styles script
Copy link to clipboard
Copied
Hi I was wondering if anyone could help me? I am looking for a script that would make several paragraph styles changes in one script. The following things i need to change are -
Ligatures - OFF
Contextual Alternatives - OFF
Paragraph Styles set to 'single line paragraph'.
I also need to choose a specific colour, in this case 'Text Black' and set the overprint to - ON
Many thanks
Copy link to clipboard
Copied
For
Ligatures - OFF
Contextual Alternatives - OFF
Paragraph Styles set to 'single line paragraph'.
use this
var myDoc = app.activeDocument;
myParagraphs = myDoc.paragraphStyles;
for(var i=1; i<myParagraphs.length; i++)
{
myParagraphs.ligatures = false;
myParagraphs.otfContextualAlternate=false;
myParagraphs.composer = "Adobe Single-line Composer"
}
alert ("Process Completed!!! Plz Check");
Copy link to clipboard
Copied
Really sorry, I've only just seen this. Looks like its working. Thank you!!!
Copy link to clipboard
Copied
If it works, please mark as correct answer
Copy link to clipboard
Copied
Don't worry tpk, she'll probably see your reply in another week or 2 and mark it correct then.
Some people only check there mail on a monthly basis.
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Some much more … or never!
(^/)

