View Single Post
Hi there

I start writing an applescript but i'm not expert so I copy and paste some sample of code.

I'm at this point :

Code:
tell application "OmniOutliner Professional"
	set MyDoc to front document
	repeat with MyRow in every row of MyDoc
		if (length of (note of MyRow as string)) > 0 then
			set MyNote to (note of MyRow as string)
			make child row of MyRow
			
		end if
	end repeat
end tell
I dont know how to make a child row and assign him a value.

Thanks for helping