adjust the inter-row spacing?

Jim Correia jim.correia at pobox.com
Thu May 16 12:55:02 PDT 2002


Is there a way to adjust the inter-row spacing?

When I write outline like structures in plain text, and the "items" span 
multiple lines I include a blank line between items to give a visual 
break. I find this easier to deal with, and I'd like to create a similar 
visual representation in Omni Outliner while using its structuring 
abilities. (I don't consider the ability to manually type a carriage 
return at the end of each item a viable solution :-).

If you've got the itch to force a carriage return on every item, this 
would do the trick though:

tell application "OmniOutliner"
	tell document 1
		repeat with i from 1 to count child
			set s to text of cell 2 of child i
			if (length of s > 0) and (character -1 of s is not return) then
				set s to s & return
				set text of cell 2 of child i to s
			end if
		end repeat
	end tell
end tell

Thanks,
Jim




More information about the OmniOutliner-Users mailing list