Avatar

Level 10

You can access the Doc object that is exposed in the Acrobat JavaScript API.

For example,

var doc = event.target;

xfa.host.messageBox("Author " + doc.author + " Created date " + doc.creationDate + " File path " + doc.URL);

See Doc API reference at

http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.375.html

Steve