View Single Post
Quote:
Originally Posted by kickaha View Post
Perhaps I've missed it, but the only auto-reminder I actually *do* want, is a review. ie, set actions/projects to be auto-reviewed every Monday by default, and Monday *boom* I get a Review Me sheet that I can just quickly glance at, and if the status quo is good, I can just OK it, or dive in and alter things. Or if a project status needs to be reviewed every month, I can set that, and on the 1st, up that list pops. etc.

As it is, I'm forgetting to review. Maybe I need to add actions for "Review list A", etc. :\
How about creating an iCal repeating entry? I have one of those that pops up every Sunday evening, and since I sync to my iPhone, it pops up there too.

Since you can call an AppleScript from an iCal alarm, you can even have it open a Review perspective for you, e.g. (if you had a perspective named "Review" saved):

Code:
tell application "OmniFocus"
    tell default document
        make new document window with properties {perspective name:"Review"} at end of document windows
    end tell
end tell
(This comes from OmniGroup's release notes a few builds back.)