We will be having several hundred PDFs each month that will need a name in the Title field of Document Properties. We create the PDFs out of Quark and run them through Distiller and they come out with this field blank. I found a way in Batch Processing in Acrobat to edit the other data in the document properties, but am not sure how to go about getting the Title to be the same as the File name as this will change for each document. Is there some command that I can enter in the batch to accomplish this? I'm thinking something similar to Word where you can put "&File" to get it to include the file name in the header area. Is there something like that in Acrobat that will automatically put the file name as the Title? Thanks for any and all help!
this.path is the full path to the file in version 3.01 and above
this.URL is the full url to the file in version 5 and above
this.documentFileName is the file name and extension in version 7 and above
To see what these methods reutrn and how to split the properties, run the following commands in the JavaScript Debugger:
this.info.Title will access the meta data title field
So in version 7 one can use in the batch sequence to add the file name less the file extension:
Versions prior to 7 can use:
George Kaiser