Skip to main content
Inspiring
February 13, 2017
Answered

Add Paragraph Rules to all but the Last paragraph?

  • February 13, 2017
  • 1 reply
  • 619 views

My QUestion is as stated in the description.  Is there a code that Add's paragraph Rules to selected text/Frame minus the last paragraph (keeping Paragraph rules Previously in that Text frame)?

This topic has been closed for replies.
Correct answer Obi-wan Kenobi

Hi Chris,

Is this what you mean? 

var myParas = app.selection[0].paragraphs.everyItem().getElements(),

P = myParas.length;

for (p = 0; p < myParas.length-1; p++) myParas

.ruleBelow = true;

(^/)

1 reply

Obi-wan Kenobi
Obi-wan KenobiCorrect answer
Legend
February 13, 2017

Hi Chris,

Is this what you mean? 

var myParas = app.selection[0].paragraphs.everyItem().getElements(),

P = myParas.length;

for (p = 0; p < myParas.length-1; p++) myParas

.ruleBelow = true;

(^/)

cbishop01Author
Inspiring
February 14, 2017

THank you very much That is exactly what i was wanting.

Obi-wan Kenobi
Legend
February 14, 2017