setting applied font in InDesign CS table

I can’t seem to figure out how to set the text properties inside tables in CS. I could do something like this in InDesign 2.0.2:

tell application "InDesign 2.0.2"
	tell active document
		tell text frame 1
			tell table 1
				tell parent story of every row
					set properties to {applied font:"Arial", font style:"Regular", point size:12}
				end tell
			end tell
		end tell
	end tell
end tell

Any help would be appreciated.

For some reason, cells no longer have a parent story property. Try changing “tll parent story of every row” to “tell text 1 of every cell”.


Shane Stanley

That worked. Thank you. I wonder if Adobe has officially documented this syntax…