Proprieties Menu and Cataloging Word Files

D

Dandalo Gabrielli

Hi, Does anyone know a software that reads the metadata info in word
files ?
That information, we fill in properties menu, - author, subject etc.
 
M

matt neuburg

Dandalo Gabrielli said:
Hi, Does anyone know a software that reads the metadata info in word
files ?
That information, we fill in properties menu, - author, subject etc.

AppleScript. For example:

tell application "Microsoft Word"
tell document 1
{value of document property "author",
value of document property "subject"}
end tell
end tell

{"milo minderbinder", "how to make a million"}

m.
 
Top