Reply To: Seeking Script to Turn Off All Ligatures and Hyphenations

#89135
Gert Verrept
Member

as far as ligatures are concerned:
var myDoc = app.activeDocument;
var myParStyles = myDoc.allParagraphStyles;
for (i = 1; i < myParStyles.length; i++) {
myParStyles[i].ligatures = false;
myParStyles[i].hyphenation = false;
}

This article was last modified on October 18, 2016

Comments (0)

Loading comments...