[IDCS4][Table Formating]

Hi All,
How can I apply bold formatting on 1st column & 3rd column of a table.

Regards,
Poo

Can we convert the below javascript code to applescript:
myTable.columns[0].cells.everyItem().texts[0].fontStyle = “Bold”;
myTable.columns[2].cells.everyItem().texts[0].fontStyle = “Bold”;

Regards,
Poo

tell application "Adobe InDesign CS3"
	tell active document -- or tell document 1
		
		set theStyle to paragraph style "name" --the name of your paragraph style in indesign
		--setting the paragraph style
		tell text of cell 12 of table 1 of story 2 --you'll need to fiddle with the settings so it selects the cells you want
			apply paragraph style using theStyle
		end tell
		
	end tell
end tell

Thanks but since the document is provided by customer so we can’t change document. Is it not possible to apply bold formatting.

Regards,
Poo