View Single Post
Well, you can always break it up or bracket it to the point where it begins to feel more readable.

Vertical is cognitively easier than horizontal, on the whole, but there are plenty of available points on the spectrum :-)

Code:
set tSubject to "Some subject"

tell application id "OOut"
	tell front document
		tell last child
			tell (make new row at end of children) to set topic to tSubject
			set expanded to true
		end tell
	end tell
end tell
--

Last edited by RobTrew; 2013-03-19 at 12:47 PM..