Action

Complete Task AppleScript- Things 3

Posted by Mike_Burke, Last update over 1 year ago

This creates the AppleScript needed to mark a task complete in Things 3.

Steps

  • prompt

    promptKey
    prompt
    promptTitle
    Name of Task
    promptMessage
    What is the name of the task in Things 3?
    promptButtons
    OK
    includeTextField
    true
    textFieldDefault
    includeCancelButton
    true
  • insertText

    template
    tell application "Things3"
    	
    	repeat with toDo in to dos of list "Today"
    		if (name of toDo as text) is "[[prompt_text]]" then
    			set status of toDo to completed
    		end if
    	end repeat
    	
    end tell

Options

  • After Success Default
    Notification Info
    Log Level Info
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.