Reply To: Is there a script for changing language to multiple paragraph styles?

Home Page / Forums / InDesign Add-ons (Scripts, Scripting, and Plug-ins) / Is there a script for changing language to multiple paragraph styles? / Reply To: Is there a script for changing language to multiple paragraph styles?

#69911
Simon Clark
Member

Hi try the code below and check if it works

var a = app.activeDocument.paragraphStyles;

for (var i=a.length-1; i > 0; i–){

a[i].appliedLanguage = app.languagesWithVendors.item(“Dutch”);

This article was last modified on September 9, 2014

Comments (0)

Loading comments...