我正在使用 JXA 使用 Numbers 应用程序自动化流程。在现有文档中创建新工作表的语法是什么?
var Numbers = Application('Numbers');
Numbers.documents[0].Sheet()...
AppleScript 等价物是:
tell application "Numbers"
tell document 1
set theSheet to make new sheet with properties {name:sheetName}
end tell
end tell
谢谢!