Dynamic Stamp JavaScript for Identity Fields
i'm looking javascrpit code dynamicly display information various identity fields use custom dynamic stamps. have identified javascript company name, name, , date (picked existing dynamic stamps). still need javascript login name, title, organizational unit, , email address. , appreciated. using acrobat professional edition 7.1.4.
thanks!
have looked in the acrobat js api reference?
identity.name name
identity.email email address
there no standard properties title , organizational unit.
you can use following code in acrobat javascript console see of properties , values of identity object.:
for (i in identity) {
console.println(i + ": " + identity[i]);
}
More discussions in JavaScript
adobe

Comments
Post a Comment