View Single Post
Hello folks,

I am trying to author a simple AppleScript to change the dates of either a single or selection of tasks.

The following is what I use for OO3 but the same script will not work due to differences in the dictionary and I have not yet been able to figure out the parity set of commands.

All ideas and advice are welcome - thanks.

Code:
tell application "OmniOutliner Professional"
	set taskDate to (current date)
	set taskList to selected rows of front document
	repeat with theTask in taskList
		set value of cell "Start Date" of theTask to taskDate
	end repeat
	--taskDate
end tell