Hyphenation off for multiple files in single action
Dear Experts,
I need help from you,
I want to open all of the indesign files in a specific folder and then run the comment.
However, my script only opens a single indesin file. I want to open multiple files in a single action.
Could you please advise on the following:
var myDoc = app.open (new File ("D:\\work\\KK\\PDF exportor\\IN\\test.indd"))
alert ("opened the document")
var myParStyles = myDoc.allParagraphStyles;
for (i = 1; i < myParStyles.length; i++) {
myParStyles[i].ligatures = false;
myParStyles[i].hyphenation = false;
}
alert ("process completed")
Thanks in advance
Kanagakumar
