Getting properties from Word documents

I am trying to access the property of “Total Editing Time”

It is referenced here:
http://www.microsoft.com/mac/developers/default.mspx?MODE=ct&CTT=PageView&clr=99-26-0&target=c02bbcac-948a-49a7-b1a2-5027394238101033&srcid=&ep=8&rtype=2&pos=1&quid=436fd8d2-a1d8-4320-9e21-522e533c6a80
and in the 2004 edition of word (the AppleScript reference is on the left on this page)

I am a Java/C# programmer - and I really can not get my head around the syntax in AppleScript.

failing that can anyone tell me how to access these document properties, and can anyone point me in the direction of and appropriate unScripted tutorials?

My motivation for this is I have a large batch of files I need to plough through and find out the editing times, creation dates and so on. I figured AppleScript was as good a place as any to start. It would be really helpful if anyone could either point me in the right direction or put me out of my misery.

Kind regards,

G

Hi,

this should do it


tell application "Microsoft Word"
	tell document 1 to get value of document property "total editing time"
end tell