My second applescript for alfred. This time it creates a things task.
1 2 3 4 5 6 7 | on alfred_script(q) set theSubject to q tell application "Things" set newToDo to make new to do with properties {name:theSubject} set tag names of newToDo to "alfred" end tell end alfred_script |