-
1. Re: Script to Change Paragraph Numbering
Mary Posner Jun 8, 2011 9:52 AM (in response to RichardM0701)Hmm, I think what you're after is "numbering expression" rather than "start at."
"Start at" is the actual number it's going to assign, to either continue from the previous number or if you're hard-coding to always start at 1, for example.
The expression is the form it'll take, with wording and spacing you're using as your format for these labels. In AppleScript, it'd be:
set numbering expression of paragraph style "Figure Title" to "Рисунок ^#. "
I don't know Javascript, but there must be something similar in the JS scripting guide.
Hope that helps!
Mary
-
2. Re: Script to Change Paragraph Numbering
[Jongware] Jun 8, 2011 2:56 PM (in response to Mary Posner)Very good, Mary! The Javascript expression is
someParagraphStyle.numberingExpression = "Рисунок ^#. ";
-- see the definition of all ParagraphStyle properties for more information.
-
3. Re: Script to Change Paragraph Numbering
RichardM0701 Jun 10, 2011 6:45 AM (in response to [Jongware])Thank you both for this info. I knew it was somewhere in there. Also thanks for the link to the scripting informaiton.








