View Single Post
Quote:
Originally Posted by nickwild View Post
Hi,

I don't use omnioutliner - could somebody advise me what lines of code to remove to get round this

Nick
Hi,
for me it was sufficient to take out the following lines:

Code:
				if isProjectFolder and createOODocument then
					set projNotesName to ooPrefix & theFolder & ooSuffix & ooExtension
					tell application "OmniOutliner"
						set notesDoc to make new document with properties {name:projNotesName}
						save notesDoc in theCurrentPath & projNotesName
						close notesDoc
					end tell
				end if
It's not a clean solution, since there are now unused variables, but it should help. I also set createOODocument to false.

Good Luck.. ;)