有没有办法从 AppleScript 创建或打开 Excel 工作簿而不使其成为前台 window?

Is there a way to create or open an Excel workbook from AppleScript without it becoming the foreground window?

我正在尝试创建一个 AppleScript,它可以创建 and/or 打开现有工作簿但不能使其成为前景 window。如果用户已经在处理工作簿,我不想打扰他们。

看来

tell application "Appname"
launch -- versus activate
--
end tell

将启动应用程序并在后台运行每个屏幕。