View Single Post
I'd like to create an applescript that creates a repeating task in a specified project. For example, I want to set up a repeating annual task for me to acknowledge Birthdays. I'm having a problem defining the properties.

Code:
tell application "OmniFocus" to tell default document
	make new task with properties {name:"Birthday Test", containing project:
 "Birthdays", start date:2/12/2011, due date:2/16/2011, context:"Mac:Email",
 repetition:"1 year"}
end tell
Any help will be appreciated.