Dynamic stamp lost identity

I frequently review documents and use a dynamic stamp to mark them as "Reviewed".  Up until now, the dynamic stamp included my name as well as date and time information.  The identity information is now missing and only includes date and time info - it seems not to pick up the identity info contained in the Identity panel in the Preferences dialog.  Any ideas on how I can restore full functionality (identity info) to the dynamic stamp? I'm using Acrobat ver. 8.2.3.
Thanks!
[email address deleted by host]

Have you looked in the Acrobat JS API Reference?
identity properties
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]);

Similar Messages

  • Name not appearing in Dynamic Stamps

    Hi.
    When I insert a dynamic stamp, such as reviewed,approved etc, into a pdf my name does not appear as the reviewer/approver.
    I am using Adobe pro9 and Windows 7.
    Thanks.

    Is your copy of Acrobat up to date with version updates?
    The current version is 9.5.1.
    Have you turned off JavaScript in Acrobat?
    Did you create the dynamic stamp?
    Have you completed "Identity" category in Acrobat's Preferences?
    Do the Dynamic stamps supplied by Adobe work?
    What is the code you are using to insert your name?
    The code supplied by Adobe for their Dynamic stamps:
    event.value = (new Date()).toString();
    AFDate_FormatEx("h:MM tt, mmm dd, yyyy");
    event.value = "By " + ((!identity.name || identity.loginName != (event.source.source || this).Collab.user) ? (event.source.source || this).Collab.user : identity.name)
    + " at " + event.value;

  • Dynamic stamp scripting which worked in Acrobat 9 Pro not working in Acrobat XI Pro

    I don't know JavaScript, so I am flying blind. I have recently updated to Acrobat XI Pro (on Win 7 Pro). I have had trouble setting up the same dynamic stamps that I had working in Acrobat 9. Just creating the stamps has been difficult, but the real pain has been trying to use the same scripting that I was using before. In particular, I have a field in which I want to enter details of a payment, such as cheque number. The script that worked before was:
    var cAsk = "Enter Payment Details" ;
    var cTitle = "Payment Details:  ";
    if(event.source.forReal && (event.source.stampName == "#X-MzCINchnGa7KblIGbv5C"))
      var cMsg = app.response(cAsk, cTitle);
      event.value = cMsg;
      event.source.source.info.exhibit = cMsg;
    The JavaScript debugger goes nuts about event.source being null and I am completely lost.
    Can anyone suggest a script which is likely to work for me? Is there any tutorial or similar material dealing with these issues in Acrobat XI Pro and in language that I am likely to understand?
    Thanks in advance.

    Change the start of the if-statement to:
    if (event.source && event.source.forReal && ...

  • Custom Dynamic Stamp Java not working in WIN7

    I currently was upgraded from WinXP to WIN7. Running Acrobat Prof 8 with all the updates. I created a dozen customized dynamic stamps that grab info and date/time from the system. Using the following java, the stamps worked perfectly.
    event.value = (new Date()).toString();
    AFDate_FormatEx(",m/d/yy");
    event.value = " " + (identity.name || identity.loginName) + " - " + event.value;
    In WIN 7, I am getting a long date and time with no identity.
    HELP
    Ken Panthen
    Albany, NY

    GK,
    I tried a completely new file from scratch, used your script and it did not pick up the user,  it used a long date format, etc. Here is a sample of what I got. I only want the short date and name. No time zone. No name appears. It should be KPanthen.

  • Superseeded Dynamic Stamp

    Hi there,
    I'm having a problem with Acrobat 9 Pro and Win 7 Dynamic Stamps.
    I'm an IT technician and I'm trying to help a client wich uses Adobe 9 Pro and Stamps...Dynamic ones.
    Because we live and work in Portugal, I had to use the next string, in order to properly display user and "our" date and time.
    String
    event.value = (new Date ()) .toString(); AFDate_FormatEx("hh:mm dd mmm yy");
    event.value = "By " + ((!identity.name || identity.loginName != (event.source.source || this).Collab.user) ? (event.source.source || this).Collab.user : identity.name)
    + " at " + event.value;
    Now the problem is that the client asked me to create a new dynamic stamp with the word: Superseeded...
    I did..
    I used the same string...
    I followed the instructions at: http://acrobatusers.com/tutorials/print/custom_dynamic_stamp
    And...Nothing...the stamps shows up just with the date and time of creation...
    You can check it here:
    https://dl.dropboxusercontent.com/u/18941050/Superseded.pdf
    What can I do to solve this?
    Best Regards

    I'm adding the "stamp" at:
    C:\Users\xxxnamexxx\AppData\Roaming\Adobe\Acrobat\9.0\Stamps
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Annotations\Stamps\ENU
    And I didn't notice any error in JS...
    I just tried to follow the tutorial: http://acrobatusers.com/tutorials/print/custom_dynamic_stamp

  • Changing Dynamic Stamp Info

    I recently learned of the stamping feature in adobe. I am more mobile now in my job and I have created a digital signature (scanned an image and made a jpeg) and would like to time and date stamp it when I sign, however when I choose the dynamic stamp to perform this it shows up as administrator. I do log on as the admin however I would like my name to show up here instead of admin? Any help is greatly appreciated.

    Shane,
    In Acrobat 8 Pro, you can find the settings below:
    Edit-->Preferences-->Commenting-->Making Comments-->Uncheck "Always use Log-in Name for Author name"
    Edit-->Preferences-->Identity and enter your information accordingly.
    It states:
    i "Your identitiy information is used with comments, reviews, and digital signatures..."
    Hope this helps.
    Simon P

  • Dynamic Stamps with Text Input Options

    You guys were so helpful I thought I'd give this another go. I'm trying to create a stamp like the one used in this tutorial (http://blogs.adobe.com/acrolaw/2009/05/add_dynamic_exhibit_stamps_in_ac.html), but based off of the attached image. The tutorial is great if you want to work off of the existing file, but I can't quite figure out how to make it work for creating something from scratch. Bascially I need people to be able to input their name and date, and have it not change after it's been entered. Thanks!

    Have you looked at the links to the other web sites for the more advanced tutorials?
    Dynamic Stamps Secrets
    If you want more user input you should look at 'dialog' object or AcroDialogs plug-in form Windjack Solutions.

  • How can I create a new dynamic stamp in Pro version ?

    I would like to add a new dynamic stamp but cannot find out how to.

    A simple way is to create a new custom stamp using the UI, and then make it dynamic by opening the resulting stamp file, adding one or more form fields, and the custom calculation script(s) that control the behavior.  If you get stuck with any of these things, post again.
    For everything you need to know about stamps, get this book: http://www.amazon.com/About-Stamps-Acrobat%C2%AE-Paperless-Workflows/dp/0985614706

  • Question regarding the creation of a custom dynamic stamp using "Will Print" from "Set Doc. Actions

    Hi all,
    Using Acrobat 9.0 Professional, I have successfully created a dynamic stamp using the forums where I have added Login / Date to my own image and it works great as designed.  However, the problem I am having is that when a document is stamped it becomes flat and doesn't update dynamically which does not work for my requirements.
    I need to create a pdf that is stamped by myself so that other users (using only Reader) can open the pdf and when printed the stamp will print with the correct date/time (in the format I describe below).
    I found a workaround (outside of a stamp) where I added a text box (called "Today") that updates everytime the document is printed by going to
    Advanced / Document Processing / Set Document Actions / Document Will Print
    and adding the following Java Code:
    var f = this.getField("Today");
    f.value = util.printd('yyyymmddhMMss', new Date());
    This provides me with the unique number that I need for printing  (ie: 20100317102030).  It works great as an inserted text field on my pdf.
    My problem is that when I use the "create custom stamp" as in other tutorials by inserting this new text field, it will not update (or display) on print, even though it was set the exact same way as the custom stamp I got working using the Adobe dynamic stamp information.
    Can you offer any advice on how I can get this to work as a custom stamp?  I would rather not have to create both a stamp and then overlay the text field manually as I have hundreds of documents (maybe more) to do this for.
    Also, as an aside, if I could get this to work, I would also like to add Login ID that updates in the same manner as my custom date format (but one problem at a time I guess! )
    Thanks for any and all help that you can provide.  I looked through these forums and elsewhere, but I don't seem to see anyone else with the same problems (with solutions posted).
    I really wish Adobe had a Custom Stamp creator as part of their program, with the dynamic option.  It would be so easy for them and save a lot of users so much time.

    Stamps are just like a inked rubber stamp, except in Acrobat you can suppress printing them and you can move them. So if you use a dated "Faxed" stamp when you fax a document, even though you can adjust the stamp before affixing the stamp, once the document is stamped the date on the document can not be changed or moved. It appears, that the use of a stamp might not be the best solution.
    "Interactive" means Acrobat JavaScript programing.
    With JavaScript not only can you insert variable data but also fixed text strings or a combination of both.
    So your script could be updated to something like:
    var f = this.getField("Today");
    f.value = "Printed : " + util.printd('yyyymmddhMMss', new Date());
    http://forums.adobe.com/message/1333261#1333261
    Getting the 'login name" will require some special JavaScript code being added to an application level JavaScript folder that runs upon initialization and is the data or function created is then accessed  by your PDF. This file will need to be installed on each user's system.
    http://www.acrobatusers.com/forums/aucbb/viewtopic.php?pid=30444

  • Creating custom dynamic stamps in Acrobat 9

    I have Acrobat 9 Pro and I'm trying to create my own custom dynamic stamp.  I have the image in a PDF format and I can create  custom stamp out of it but I can't figure out how to add the dynamic fields.  It's pretty easy in Acrobat 8 but there's just no info on how to do it in 9.  I've gone through the web, lynda.com, and nothing.  Some from Adobe, please help wtih this!  Thanks.

    Something that may be of some help:
    http://acrobatusers.com/search/google/custom%20dynamic%20stamps?query=custom%20dynamic%20s tamps&cx=010702214422959725198%3Amrw4k197ftq&cof=FORID%3A11&sitesearch=#433
    Be well...

  • Dynamic Stamps Not Working in Adobe Acrobat Pro

    Hi everyone, the dynamic stamps on Adobe Simultaneous Review are no longer working for us. I have Adobe Acrobat Pro 9 (it works for me) but it's not working for many other people (they have Adobe Acrobat Pro X). Does anyone know how we can fix this. I think the problem started occurring a few months ago.
    Many Thanks!
    Joy

    You can shutting down Acrobat and then try moving (DO NOT DELETE - you may want put them back afterward if this doesn't work) the Collab and Sync folder out of the User's Acrobat folder and then rejoin the Shared Review to see if the Dynamic Stamps reappear.

  • Can I create a custom-scripted dynamic stamp in Acrobat Standard or do I have to buy Acrobat Pro?

    I am researching options for the company I work for to take it's invoicing system paperless and I need to know if I can create a custom-scripted dynamic stamp in Acrobat Standard or is that possible only in Acrobat Pro?

    You can create a custom dynamic stamp in Std. and Pro. and you can use the dynamic stamp in Reader as well. Here is an infographic on Creating a Custom Dynamic Stamp in Acrobat XI.

  • [bug locked] Creating custom dynamic stamp Acrobat 9

    I am new to Acrobat and I am trying to create a custom dynamic stamp. In searching I found instructions using Acrobat 8 but these instructions don't work for version 9. Can someone help me with creating a dynamic stamp in version 9?
    Thank you.

    Did you try searching the Acrobat 9 help ? I did there is info there and if
    you want more (this one for livecycle);
    <http://www.adobe.com/devnet/livecycle/articles/lc_custom_stamp_tip.pdf>
    Please note: I read this Forums through e-mail. If you respond to me; please
    quote, otherwise I have no idea whom your response is addressed to or the
    context. This is all thanks to how this forum doesn't work properly, yet.
    Regards,
    S.D.A. (Stephen)

  • Dynamic stamps with Acrobat Pro X

    Help needed!
    How to create own dynamic stamps with Acrobat Pro X, without any knowledge of programming.
    It was very easy with the program used before (Nuance); unfortunally it's not possible to export from Nuance to Acrobat.
    Thanks in advance
    vtosi

    It can't be done without using a script, and not a very simple one, either.
    There are detailed tutorials about how to do it, for example here:
    http://acrobatusers.com/tutorials
    If you're interested in someone to create the stamp (and all the required
    scripts) for you, feel free to contact me by PM or at [email protected] .

  • Dynamic Stamps in Acrobat 9 -

    My dynamic stamps no longer show that they are "By" me and the date is now listed showing " Green Mountain Time" or "GMT" and I can't seem to fix this.
    I can't remember having changed anything, these are stamps I have used for years.
    Tks in advance

    You got it!! After posting the question, other gremlins started appearing, so after
    a proper shut down and rest period..... everything is magically fixed.  You gotta love computers!!
    Thank

Maybe you are looking for

  • Can't open/send mail on in mail

    I just created a me.com mail account which works perfectly from my iPod touch and ipad but i can't open mail from mail on my Mac running snow leopard?  It says "cannot verify password for [email protected]" ???  Do I need to upgrade to lion for mail to work

  • Why can't I use adobe flash player to open attachments

    Why can't I use adobe to open attachments - have downloaded latest version but still get a black page

  • German Satellite in Thailand (Ac adapter or cable?)

    Hello, I have a german version of Toshiba Satellite, which shouldnt be used without earthing. But in the most hotels or appartments in south east asia there is absolutely no earthing. Should I buy just the cable there or the whole AC adapter? What el

  • Button background fill "Linear - to top" not showing after save.

    I've made the proper edits to make these buttons look very "cool" having the background filled to a gradient look which is called "Linear to top", but once I save this form and open the PDF the button color is solid rather then gradient or "linear to

  • Confusion in the Identity Management Training offerings

    Hi All, I am trying to find a suitable training that will allow me to get an indepth knowledge about the Identity Managerment. When looking at the course listed for the Identity manger they are little confusing. For Ex: I looked at course IDM 4484 an