View Single Post
OmniPlan has csv support, though we recognize it has problems parsing and mapping data. I'd love for you to try it out and let us know. There is no File->Import menu item or anything... just open your .csv file in OmniPlan. Cleverly, the importer currently defaults to TAB delimited columns (in csv? Right.) but we'll change that. Date parsing it also rather... tetchy.

If you need more control than the column mapping offers, Applescript can probably do what you want. Here's something I banged together which is, of course, hugely rudimentary:

Code:
tell application "OmniPlan"
	set myDoc to make new document
	tell myDoc
		set Myself to make new resource with properties {kind:person, efficiency:2, name:"Tom", cost per hour:200.0}
		set MyTask to make new task with properties {name:"Cure Cancer", duration:8.0}
		assign MyTask to Myself
	end tell
end tell