I'm looking for the JavaScrpit code to dynamicly display the information for the various identity fields for use with custom dynamic stamps. I have identified the javascript for Company Name, Name, and date (picked from the existing dynamic stamps). I still need the javascript for Login Name, Title, Organizational Unit, and Email Address. Any and all help would be very much appreciated. I am using Acrobat Professional Edition 7.1.4.
Thanks!
Have you looked in the Acrobat JS API Reference?
identity.name is Name
identity.email is the Email Address
There are no standard properties for Title and Organizational Unit.
You can use the following code in the Acrobat JavaScript console to see all of the properties and values of the identity object.:
for (i in identity) {
console.println(i + ": " + identity[i]);
}
North America
Europe, Middle East and Africa
Asia Pacific