Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Support/bin/create_task
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on run argv
set theNote to ""
end try

set theMessage to "[url=" & theURL & "]Email[/url]"
set theMessage to "Email: " & theURL

tell application id "com.culturedcode.ThingsMac"
-- Creating a todo without the quick entry:
Expand All @@ -21,6 +21,6 @@ on run argv
-- set tag names of newToDo to "Work"

-- properties can include, for example, 'tag names:"Work"', but I couldn't make that work...
show quick entry panel with properties {name:theName, notes:theMessage & "\n" & theNote}
show quick entry panel with properties {name:theName, notes:theMessage & "\n–\n\n" & theNote}
end tell
end run