NMKP
NMKP

Reputation: 799

How do i open a new window in safari when a safari is already opened

I need to open a new window in safari when a safari is already opened using apple script.

Note: Without use File Menu or Shortcut key.

Thanks in advance.

Upvotes: 0

Views: 135

Answers (1)

adamh
adamh

Reputation: 3292

tell application "Safari"
    activate
    make new document
end tell

Upvotes: 1

Related Questions