AppleScript Snippets

2 thoughts
last posted Sept. 25, 2016, 1:10 a.m.
0
get stream as: markdown or atom
0

Open a New Safari Window

tell application "Safari"
    make new document
    activate
end tell
0

Open a New Terminal Window

tell application "Terminal"
    do script ""
    activate
end tell