Is there some way to see the path of a file example C:\documents\clients\filename.pdf in Acrobat when working on a document? In Word, I can see this on a status bar at the top or bottom of the screen. I know I can find it in properties, but I would like to be able to just see it from the main document view.
I saw old posts about using a java script -- I don't know how to set that up. I don't need it to do anything -- just display.
Thank you!
try {
app.removeToolButton('XYZDocPath');
} catch(e) {}
finally{
app.addToolButton({cName:"XYZDocPath",
cExec:"",
cLabel: this.path});
}
George Kaiser