AppleScript Snippets

1 thought
last posted Sept. 25, 2016, 8:03 p.m.
0

Open up Work and Personal Email Tabs in new Window

tell application "Safari"
make new document at end of documents with properties {URL:"https://mail.google.com/mail/u/0/#inbox"}
tell window 1
make new tab at end of tabs with properties {URL:"https://mail.google.com/mail/u/1/#inbox"}
end tell
end tell