Answers:
某些应用程序在其Dock上下文菜单中具有打开新窗口的操作。
针对不同应用的其他选项:
tell application "TextEdit"
make new document
activate
end tell
tell application "Safari"
make new document at end of documents with properties {URL:"http://g.co"}
activate
end tell
tell application "Terminal"
do script ""
activate
end tell
tell application "System Events" to tell process "iTerm"
click menu item "New Window" of menu "Shell" of menu bar 1
set frontmost to true
end tell
tell application "Google Chrome"
make new window
activate
end tell