Example of AppleScript to get tasks from Specific Project

tell application "OmniFocus"
	tell default document
		set interestingProject to first flattened project whose name is "ELC Website"
		set interestingTasks to flattened tasks of interestingProject
	end tell
end tell

You could probably also do something with the unique ID, so long as your project doesn’t repeat. (The recurrences would have different IDs than the original.)

4 Likes