Skip to content

Instantly share code, notes, and snippets.

@cdzombak
cdzombak / Drop Action.scpt
Created June 3, 2015 03:13
OmniFocus AppleScript to move an action to my "❌ Dropped" context and mark it completed.
property droppedContext : "Dropped"
tell application "OmniFocus"
tell front document
try
set theDroppedContextID to id of item 1 of (complete droppedContext as context)
set theDroppedContext to first flattened context whose id is theDroppedContextID
on error
display alert "No context found whose name contains “" & droppedContext & "”"
return