Reply To: numbering!

#54225

Welcome! (Ho? geldiniz!)

InDesign does not support 'random' numbering, only consecutive numbers. So use this Javascript, it will insert numbers every 10 paragraphs. Click your text cursor in the running story where you want them, and double-click the script.

for (a=10; a<app.selection[0].parentStory.paragraphs.length; a+=10)
{
app.selection[0].parentStory.paragraphs[a-1].insertionPoints[0].contents = String(a)+”. “;
}

This article was last modified on December 14, 2009

Comments (0)

Loading comments...