set overprint fill of text to false in Adobe Illustrator

My goal is to remove any overprinting commands for anything within an Illustrator CS4 document. The below snippet appears to work for objects. And I do have another more elaborate script that I know works based on color values. But for the life of me I cannot figure out how to set text items so its overprint fill is set to false?

Does anybody know how to remove overprint fills from text?

Thanks,
-Jeff

tell application "Adobe Illustrator"
	activate
	tell document 1
		set fill overprint of every path item to false
		set stroke overprint of every path item to false
	end tell
end tell