S
Steve Frell
I recorded a macro to do a simple task:
To count 14 lines, then break with 2 or 3 lines,
then continue - so I simply have pages of paragraphs
all of 14 lines.
Code:
--------------------------------------
Sub MAIN
InsertPara
FormatPageNumber .ChapterNumber = 0, .NumRestart = 0, .NumFormat
= 0, .StartingNum = "0", .Level = 0, .Separator = 0
InsertPageNumbers .Type = 0, .Position = 1, .FirstPage = 1
LineDown 12
InsertPara
InsertPara
InsertPara
LineDown 12
InsertPara
InsertPara
InsertPara
LineDown 12
InsertPara
InsertPara
InsertPara
LineDown 12
InsertPara
InsertPara
InsertPara
LineDown 3
LineUp 3
EditClear - 3
InsertPara
InsertPara
EditSelectAll
CenterPara
End Sub
-------------------------------------------
However, this only works for 1 page. What code do
I need to add for the macro to work for the whole
document (maybe 100 pages long)?
Thanks
Steve.
To count 14 lines, then break with 2 or 3 lines,
then continue - so I simply have pages of paragraphs
all of 14 lines.
Code:
--------------------------------------
Sub MAIN
InsertPara
FormatPageNumber .ChapterNumber = 0, .NumRestart = 0, .NumFormat
= 0, .StartingNum = "0", .Level = 0, .Separator = 0
InsertPageNumbers .Type = 0, .Position = 1, .FirstPage = 1
LineDown 12
InsertPara
InsertPara
InsertPara
LineDown 12
InsertPara
InsertPara
InsertPara
LineDown 12
InsertPara
InsertPara
InsertPara
LineDown 12
InsertPara
InsertPara
InsertPara
LineDown 3
LineUp 3
EditClear - 3
InsertPara
InsertPara
EditSelectAll
CenterPara
End Sub
-------------------------------------------
However, this only works for 1 page. What code do
I need to add for the macro to work for the whole
document (maybe 100 pages long)?
Thanks
Steve.