Pharagraph style indent script
Hello all,
are there anyway to reverse Left indent value to right indent on all paragraph styles at document as shown

Thanks in advance
Hello all,
are there anyway to reverse Left indent value to right indent on all paragraph styles at document as shown

Thanks in advance
Hi,
Try this:
var
pStyles = app.activeDocument.allParagraphStyles,
cStyle, cRightIndent;
// jump over [None]
pStyles.shift();
// iterate through all
while (cStyle = pStyles.shift()) {
cRightIndent = cStyle.rightIndent;
cStyle.rightIndent = cStyle.leftIndent;
cStyle.leftIndent = cRightIndent;
}
Jarek
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.