답변:
일부 응용 프로그램에는 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