如何使用AppleScript在页面文档的底部添加新页面

时间:2018-09-10 10:01:02

标签: applescript iwork

我一直在尝试使用Pages对象模型,并尝试使用AppleScript对其进行操作。我可以使用此命令将新页面添加到文档中。                     制作新页面 我面临的问题是,它总是在文档的开头而不是文档的末尾创建新页面。

字典说整个语法是

fs.readFileSync

,并且我尝试将BOTTOM和END用作位置说明符的值,但它们均未成功。请问,我想在文档底部创建一个新页面或一个新部分吗?

1 个答案:

答案 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