Question
Increase count the paragraph
Hi,
Could you please help to complete my code.
Here is my workflow:
1. Choose chapter one text
2. Select next and next paragraphs from my selection point
3. Word count length up to 2500, select up to that paragraphs and copy.
var mydoc = app.activeDocument;
var myFirstChap = mydoc.selection[0].paragraphs[0];
alert(myFirstChap.contents); // how to increase the paragraphs count?
My selection point here:

