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 characters
(* | |
Written by Sven Fechner, @simplicitybliss http://simplicitybliss.com, Dec 2015 | |
Adds the page of the currently open tab in the frontmost Safari window to OmniFocus | |
Requires you to define the context which should be set by default; Change the property below as required. | |
*) | |
property theReviewContext : "Read/Review" |
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 characters
property waitingForTag : "Waiting" | |
property daysDue : 2 | |
tell application "Things" | |
repeat with selectedToDo in selected to dos | |
set projectToDo to project of selectedToDo | |
set areaToDo to area of selectedToDo | |
set status of selectedToDo to completed |
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 characters
(* | |
Add last sent email to OmniFocus Script | |
by simplicitybliss.com, Sven Fechner | |
Straight forward script that sends the last email sent in Mail.app to OmniFocus either using the Quick Entry window or silently (well, with Growl based notifications if desired) straight to the Inbox. | |
You can influence how the task is named by modifying the PreFix and MidFix properties. The note of the task will contain a link back the email in Mail.app. | |
Use the AppleScript Menu or tools likle FastScripts, Launchbar or Alfred to trigger the script. | |