Created
February 17, 2009 15:13
-
-
Save ryanbriones/65776 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* | |
Open New Webkit Window.scpt | |
Open a new Webkit window in the current space | |
Used in conjunction with Quicksilver | |
*) | |
tell application "System Events" | |
if (count (processes whose name is "Webkit")) is 1 then | |
tell application "WebKit" to make new document | |
end if | |
tell application "WebKit" to activate | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment