Created
February 19, 2014 22:07
-
-
Save bradwright/9102690 to your computer and use it in GitHub Desktop.
Revisions
-
bradwright created this gist
Feb 19, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ on run {input, parameters} tell application "Google Chrome" set theName to title of active tab of front window set theUrl to URL of active tab of front window tell application "OmniFocus" set theTask to theName set theNote to theUrl tell quick entry set NewTask to make new inbox task with properties {name:theTask, note:theNote} select {NewTask} open end tell tell application "System Events" keystroke tab end tell end tell end tell end run