我一直在尝试使用Pages对象模型,并尝试使用AppleScript对其进行操作。我可以使用此命令将新页面添加到文档中。 制作新页面 我面临的问题是,它总是在文档的开头而不是文档的末尾创建新页面。
字典说整个语法是
fs.readFileSync
,并且我尝试将BOTTOM和END用作位置说明符的值,但它们均未成功。请问,我想在文档底部创建一个新页面或一个新部分吗?
答案 0 :(得分:0)
只用自然语言思考。
您要make
中的new page at the end of
sections
中的front document
tell application "Pages"
tell front document
set newPage to make new page at the end of sections
end tell
end tell