View Single Post
In the meanwhile, you can write a simple script which applies one style to checked items, and another to unchecked ones.

Sth like:

Code:
property plstGray : {32767, 32767, 32767}
property plstBlack : {0, 0, 0}

tell application id "OOut"
	tell front document
		tell style of (rows where state is checked)
			set value of (attribute "strikethrough-style") to "single"
			set value of (attribute "font-fill") to plstGray
		end tell
		
		tell style of (rows where state is unchecked)
			set value of (attribute "strikethrough-style") to "none"
			set value of (attribute "font-fill") to plstBlack
		end tell
	end tell
end tell

Last edited by RobTrew; 2011-09-09 at 02:22 PM..