Skip to content

Instantly share code, notes, and snippets.

@haraldmartin
Forked from simonw/SafariNewTab.scpt
Created April 29, 2009 13:29
Show Gist options
  • Save haraldmartin/103774 to your computer and use it in GitHub Desktop.
Save haraldmartin/103774 to your computer and use it in GitHub Desktop.
(*
Open a new tab in Safari (and move focus to the URL bar)
I have this configured as a Quicksilver trigger for ctrl+alt+T
*)
tell application "Safari" to activate
tell application "System Events"
tell process "Safari"
click menu item "New Tab" of menu "File" of menu bar 1
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment