Это должно работать в AppleScript для вставки разрыва страницы в конце документа.Извините, у меня нет Word для проверки.
tell application "Microsoft Word"
insert break at (after last character of active document)
end tell
РЕДАКТИРОВАТЬ: Добавлено 2018-12-23
tell application "Finder" to set allFiles to every file of (choose folder)
set outputFile to (choose folder) & "output.docx" -- or whatever
tell application "Microsoft Word"
activate
make new document
repeat with i from (count allFiles) to 1 by -1
display dialog (item i of allFiles as text)
insert file at text object of selection file name (item i of allFiles as text)
if i > 1 then
insert break at (after last character of active document)
end if
end repeat
save as active document file name outputFile
end tell
Может потребоваться некоторая отладка, но это более или менее, как это может работать.Пожалуйста, дайте нам знать, если вы не очень хорошо владеете AppleScript и вам нужна помощь в отладке.