Acrobat AppleScript stamp (Stempel)

Mein AppleScript fügt mehrere PDFs zusammen. Das geht wunderbar auch bei mehrseitigen Anhang-PDFs (weil ich die Seiten zählen lasse).
Nun möchte ich jedem Anhang einen Stempel auf die erste Seite geben: [Anhang 01], [Anhang 02], …
Ich finde aber in der AppleScript-Bibliothek die passenden Befehle leider nicht.
Und ich frage mich, ob transparente PDFs (einseitig) auf eine PDF-Seite eingefügt werden können (mit insert page) mit dem Ergebnis, daß es wie gestempelt aussieht.

tell application "Finder"
          set myPDF to choose file with prompt "Bitte wählen Sie Ihr PDF"
end tell
tell application "Adobe Acrobat Professional"
  open myPDF -- with invisible
  make Text Annotation with properties {bounds:{544, 820, 550, 812}, name:"Anmerkung Numero 05", contents:"Hier schreibe ich per Script einen Kommentar, aber wo bleibt er ab?"}
end tell
Mit diesem Script bekomme ich oben rechts ein Icon mit Mouseover "Anmerkung Numero 05". Immerhin.
Contents erzeugt keine Spuren.
Mein Ziel ist aber ein Stempel, bei dem ohne Mouseover mein Text (name) zu lesen ist.
Hat jemand eine Idee?
Mir fällt auf, daß für diesen Acrobat-Teil (Stempel, AppleScript) nichts im Internet zu finden ist, was mir helfen konnte. Keine Beispieldateien zu finden. Und ich suchte ausdauernd, denn ich möchte meine Aufgabe lösen. Von FileMaker aus soll ein PDF aus mehreren PDF zusammengefügt werden. Die Anhangdateien sollen auf der ersten Seite einen Stempel bekommen.

Similar Messages

  • Importing Existing Stamps into Acrobat 9

    Does anyone know how to load up an existing list of stamps into Acrobat 9? I know how to create and edit stamps. What I am trying to achieve is to simply cut and paste an esiting folder containing custom stamps into a new installation of acrobat 9. Previous versions of acrobat allowed you to do this by pasting your folder into the ENU/Stamps folder but this does not seem to be the same with Acrobat 9.

    Hi George,
    Thanks for your prompt response. I have not yet tried to paste anything into Acrobat 9. I am in the process of changing a user across from their old machine that uses Acrobat 7 to a new machine using Acrobat 9 and thought there must be a way to get their existing Acrobat 7 stamps transferred without having to re-create each one in Acrobat 9.
    Any suggestions would be helpful.
    Kind regards,
    Chris Bovill
    Phone: 03 8862 2300  Facsimile: 03 9419 2971
    This communication is intended only for use of the addressee and may contain legally privileged and confidential information.  If you are not the addressee, you are notified that any transmission, distribution or replication of this message is strictly prohibited.  The legal privilege and confidentiality attached to this email is not waived, lost or destroyed by reason of a mistaken delivery to you.  If you have received this message in error, we would appreciate immediate notification by telephone on 03 9859 7933 and ask that the message be permanently deleted from your system.

  • Acrobat 9 dynamic stamp customized transfer from previous version

    client of mine made a custom dynamic stamp and they can get it set up fine (dynamic field inserted in the stamp) and in the correct folder where it pulls the other stamps, but it is not finding it in the stamp list in the program, is what they've told me. This was functioning properly in our old computer when they were an earlier version of Acrobat. I want to know how I can get it to show up. The custom stamp I believe is a jpg cause it was created in photoshop.

    The Acrobat/Reader stamp file specification has not changed sinced Acrobat/Reader 6. So if the stamped worked in an earlier verion it will work in Acrobat 9 and later as well. Since she recreated the stamp it is very likely that she did something different, because it sounds like the stamp was made incorrectly.
    Not all pages in the stamp file are stamps. Stamp pages are marked in a special way. You typically make a dynamic stamp by first creating a static stamp, and then manually modifying that static stamp. So, did she create a static stamp first? and does this static stamp show up where it should on the stamp menus? This is the starting point for a dynamic stamp, and the first thing that should be checked before adding dynamic features to the stamp file. See the link below for the "All About PDF Stamps" book. You'll find everything you need to know about creating stamps there.
    BTW: it is not a good idea to add new custom stamps to the built-in stamps, and especially if it means editing the original built-in dynamic stamp file. It is much better to create your own stamp categories.
    You also need to restart Acrobat after creating the dynamic stamp file.
    Thom Parker
    The source for PDF Scripting Info pdfscripting.com
    All About PDF Stamps in Acrobat and Paperless Workflows - THE BOOK!
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)
    Having trouble, Why Doesn't my Script Work?

  • How do I migrate my custom stamps from XI to DC? Where is the "stamps" folder in DC?

    I have several vital custom stamps made for Acrobat XI (and previous versions). When upgrading thfough former versions, all I had to do was save the stamp files to the spamps folder and restart. Now, there's no hint of a stamps folder and nothing in the help file to provide guidance. Not even info as to whether earlier stamps can be used at all.

    Hey nils egilt10348323,
    For Windows, you can simply go to "C:\Users\User Name\AppData\Roaming\Adobe\Acrobat\11.0\Stamps
    Copy this folder and paste it to "C:\Users\User Name\AppData\Roaming\Adobe\Acrobat\DC\Stamps" to use the customized stamps in Acrobat DC as well.
    If you are on MAC, then you can locate AppData folder under "Go > Libarary > User Name" and then perform the same steps.
    Hope that helps.
    Let me know if you need further assistance.
    Regards,
    Anubha

  • Need some help on AVDocClose

    I got an exception " Unhandled exception at 0x77a515de in Acrobat.exe: 0xC0000005: Access violation" everytime when I call AVDocClose(avDoc, true) in a customized Plugin. So I tried the following:
    Downloaded sdk100-v1, in the sample "Stamper": changed "ADBE:Stamper" in "Stamper_K = ASAtomFromString("ADBE:Stamper")" (StamperInit.cpp --> GetExtensionName) to something else so when the user click on the Stamper menuItem or Stamper tool button,  the method "ActivateStamperTool" gets called. Next, I changed this method to something like this:
    static ACCB1 void ACCB2 ActivateStamperTool (void *clientData)
          char* pdfFilePath;
          std::string tempPath = getenv("TEMP");
          tempPath.append("\\fv.pdf");
          pdfFilePath = &tempPath[0]; 
          AVDoc avDoc = AVAppGetActiveDoc();
          if(avDoc==NULL) {
                // if no doc is loaded, make a message.
                AVAlertNote("There is no PDF document loaded in Acrobat.");
                return;
          DURING
                if(_access(pdfFilePath, 0) != -1)
                      DeleteFile(pdfFilePath);
                PDDoc myPDDoc = AVDocGetPDDoc (avDoc);
                PDDocSave(myPDDoc, PDSaveFull,                          
                ASPathFromPlatformPath(pdfFilePath), NULL, NULL, NULL);
                AVDocClose(avDoc, true);
                AVAlertNote("PDF is closed.");
          HANDLER
                char  buf[256], errmsg[256];
                sprintf(buf,  "Error %d: %s", ErrGetCode(ERRORCODE),       
                ASGetErrorString( ERRORCODE, errmsg,  sizeof (errmsg) ) );
                AVAlertNote(buf);
          END_HANDLER
          //AVAppSetActiveTool (&stamperTool, true);
          // Force redraw
          //RedrawAllVisibleAnnots();
    when I clicked on the Stamper menu item, the above method worked perfectly. It saved the active pdf file into the user's local temp folder and closed it with no problem. But if I click on the Stamper tool button, it did save the pdf into the local temp folder, closed the active document and displayed the "PDF is closed." message box. The crash came after I  closed this message box.
    The debug output is:
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Acrobat.exe'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\ntdll.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\kernel32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\KernelBase.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\user32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\gdi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\lpk.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\usp10.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msvcrt.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\advapi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\sechost.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\rpcrt4.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\sspicli.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\cryptbase.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\winsxs\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebc b7eb57\msvcr90.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\imm32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msctf.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\nvinit.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\_etoured.dll', No symbols loaded.
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\Nvd3d9wrap.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\setupapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\cfgmgr32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\oleaut32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\ole32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\devobj.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\nvdxgiwrap.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_ none_41e6975e2bd6f2b2\comctl32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\shlwapi.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Acrobat.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\AGM.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\winsxs\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebc b7eb57\msvcp90.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\version.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\CoolType.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\shell32.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\BIB.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\ACE.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\uxtheme.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\dwmapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\profapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\cryptsp.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\rsaenh.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\RpcRtRemote.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\Stamper.api', Symbols loaded.
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\weblink.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\ws2_32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\nsi.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\EScript.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\clbcatq.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\WebPDF.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msxml6.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\propsys.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\ntmarta.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\Wldap32.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\BIBUtils.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\sqlite.dll', Binary was not built with debug information.
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\amtlib.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\amtservices.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\IPHLPAPI.DLL'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\winnsi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\winhttp.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\webio.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\adobe_caps.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\asneu.dll'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\AdobeXMP.dll', Binary was not built with debug information.
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\plug_ins\PDDom.api'
    'Acrobat.exe': Loaded 'C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\SPPlugins\ADMPlugin.apl'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msimg32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\oleacc.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\SysWOW64\msftedit.dll'
    The thread 'Win32 Thread' (0x240) has exited with code 0 (0x0).
    Unhandled exception at 0x77a515de in Acrobat.exe: 0xC0000005: Access violation.
    The program '[1784] Acrobat.exe: Native' has exited with code 0 (0x0).
    It is kind of weird that the same method called from menu item clicking worked but failed from tool button clicking. The operating system I have is windows 7 professional, the version of the adobe is Adobe  Acrobat X Pro. Could any one here give me some help please. Thanks.

    For this level of support you need to contact our Developer Support team directly.

  • AVAnnotHandlerRec GetType issue in sdk example!

    Hi,
    Anyone tried the Stamper api sdk example in Acrobat 10 or Acrobat 11 on windows (xp)?, well when you open a doc add a stamp to it and close acrobat without saving it crashes acrobat. (acrobat.dll error)
    (if you don't add stamps then it's closes ok)
    I have narrowed the problem down to the AVAnnotHandlerRec GetType  which is causing the issue, problem is I don't know how to fix it.
    I have used this example in Acrobat 5,6,7,8 and 9 and it works ok.
    gStamperAH.GetType = ASCallbackCreateProto(AVAnnotHandlerGetTypeProc, &AnnotGetType);
    Acrobat 10 SDK\Version 1\PluginSupport\Samples\Stamper
    crashes acrobat on close with:-
    AppName: acrobat.exe
    AppVer: 10.1.4.38
    ModName: acrobat.dll
    ModVer: 10.1.4.38
    Offset: 000bd8e7
    AppName: acrobat.exe
    AppVer: 11.0.0.379
    ModName: acrobat.dll
    ModVer: 11.0.0.379
    Offset: 0003c672
    Any ideas?

    well, I have debugged it and it's actually unloading the Stamper.api plugin ok. but has an memory access issue later which causes the crash, it seems everytime I debug the unload unloads with different results... ie.. order of plugin dll's.   anyway, i'm going to contact Adobe to see if they have any ideas.
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\user32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\gdi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\advapi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\rpcrt4.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\secur32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msvcp100.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msvcr100.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\shimeng.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\imm32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\rserver30\R3GOD.DLL', Binary was not built with debug information.
    'Acrobat.exe': Unloaded 'C:\WINDOWS\system32\rserver30\R3GOD.DLL'
    'Acrobat.exe': Loaded 'C:\Program Files\Google\Google Desktop Search\GoogleDesktopNetwork3.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ws2_32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ws2help.dll'
    'Acrobat.exe': Unloaded 'C:\WINDOWS\system32\shimeng.dll'
    'Acrobat.exe': Loaded 'C:\Program Files\CheckPoint\ZAForceField\Plugins\ISWSHEX.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.6195_x-ww_44262b86\m svcr80.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.6195_x-ww_44262b86\m svcp80.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ole32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ntmarta.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\samlib.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wldap32.dll'
    'Acrobat.exe': Unloaded 'C:\Program Files\Google\Google Desktop Search\GoogleDesktopNetwork3.dll'
    'Acrobat.exe': Unloaded 'C:\WINDOWS\system32\ws2_32.dll'
    'Acrobat.exe': Unloaded 'C:\WINDOWS\system32\ws2help.dll'
    The thread 'Win32 Thread' (0x10a8) has exited with code 0 (0x0).
    'Acrobat.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x -ww_35d4ce83\comctl32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\shlwapi.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\Acrobat.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\AGM.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\version.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\CoolType.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\shell32.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\BIB.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\ACE.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\uxtheme.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msctf.dll'
    'Acrobat.exe': Loaded 'C:\Program Files\Common Files\Spigot\Search Settings\wth155.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\psapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.6161_x-ww_31a54e43\m svcp90.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.6161_x-ww_31a54e43\m svcr90.dll'
    The thread 'Win32 Thread' (0x80c) has exited with code 0 (0x0).
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\apphelp.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msctfime.ime'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\xpsp2res.dll', Binary was not built with debug information.
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Stamper.api', Symbols loaded.
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\sqlite.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\clbcatq.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\comres.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\oleaut32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\mslbui.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\winsta.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\netapi32.dll'
    'Acrobat.exe': Unloaded 'C:\WINDOWS\system32\winsta.dll'
    'Acrobat.exe': Unloaded 'C:\WINDOWS\system32\netapi32.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\amtlib.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\winhttp.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\setupapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\iphlpapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ws2_32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ws2help.dll'
    The thread 'Win32 Thread' (0xe6c) has exited with code 1 (0x1).
    ADOBE_READLOGGER_CMD:PAUSE_LOG
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\BIBUtils.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wtsapi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\winsta.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\netapi32.dll'
    The thread 'Win32 Thread' (0x9fc) has exited with code 1 (0x1).
    The thread 'Win32 Thread' (0x39c) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x8b4) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x106c) has exited with code 0 (0x0).
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Annots.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ieframe.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\iertutil.dll'
    'Acrobat.exe': Unloaded 'C:\WINDOWS\system32\ieframe.dll'
    'Acrobat.exe': Unloaded 'C:\WINDOWS\system32\iertutil.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\PDDom.api'
    The thread 'Win32 Thread' (0x10b0) has exited with code 0 (0x0).
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\oleacc.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msvcp60.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msftedit.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Accessibility.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wbem\wbemprox.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wbem\wbemcomn.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wbem\wbemsvc.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wbem\fastprox.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\ntdsapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\dnsapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\rsaenh.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\crypt32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msasn1.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\AXE8SharedExpat.dll'
    'Acrobat.exe': Loaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\IA32.api'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wininet.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\normaliz.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\urlmon.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\iertutil.dll'
    The thread 'Win32 Thread' (0x1770) has exited with code 0 (0x0).
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\mswsock.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\hnetcfg.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wshtcpip.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\userenv.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\wintrust.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\imagehlp.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\schannel.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\rasapi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\rasman.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\tapi32.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\rtutils.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\winmm.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\msv1_0.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\sensapi.dll'
    'Acrobat.exe': Loaded 'C:\WINDOWS\system32\rasadhlp.dll'
    'Acrobat.exe': Loaded 'C:\Program Files\Bonjour\mdnsNSP.dll'
    'Acrobat.exe': Unloaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Stamper.api'
    'Acrobat.exe': Unloaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Annots.api'
    'Acrobat.exe': Unloaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\PDDom.api'
    'Acrobat.exe': Unloaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\Accessibility.api'
    'Acrobat.exe': Unloaded 'E:\Program Files\Adobe\Acrobat 11.0\Acrobat\plug_ins\IA32.api'
    The thread 'Win32 Thread' (0x1390) has exited with code 0 (0x0).
    First-chance exception at 0x6003c672 in Acrobat.exe: 0xC0000005: Access violation reading location 0x01ff36a0.
    Unhandled exception at 0x6003c672 in Acrobat.exe: 0xC0000005: Access violation reading location 0x01ff36a0.

  • Signature won't print for receipient

    My financial advisor recently sent me a PDF to fill out, sign, & return. I'm using Acrobat Professional CS4 (MacPro tower, OS/10.6.2) and filled in the needed lines using the Typewriter tool. I then used Acrobat's stamp tool to place my scanned signature on the appropriate part of the form. Saved the file and emailed it back.
    When she opens the file she sees all of my additions including the signature but when she attempts to print it out for a needed hard copy, the signature disappears. Is there some security setting in the document that I need to reconfigure or is the problem on her end? In Document Properties -> Security Method, Method is set to No Security and Summary reads Allowed for all ten options.
    Additional info: she is on Windows, however I sent the file to a friend in my Mac club and he had the same issue: saw everything I added, but signature will not print. Prints just fine here at home. Hence I'm convinced it is some document setting on my end that needs alteration.

    I do not have an answer, but I did send a similar type document to myself by email, received it, and the signature stamp printed properly. You may be able to run some tests by sending to yourself, and it would be best if you could receive the file on a different computer from the one you sent from.
    Also, I notice that many of the stamps seem to be items that a person would not want to print, such as "Sign here" or "Witness". These are guides for the recipient to know what action to take but should not be part of the final print. (This of course would apply to comments and other marks, as well.) So how in Acrobat does a person specify whether or not a specific object is to print? There should be a way to turn printing of objects on/off, since the stamps and comments may be needed for prep but not needed on the final print. But the Properties box for the stamp/object does not have that function. Creating a signature graphic with the stamp function puts it in the same category: when to print and when not to print; and how do you turn it on and off?

  • How can I use applescript for OCR of a bunch of files - with Acrobat XI?

    Hi there,
    Iwant to write a script (eg applescript) that can be used as a droplet or has a menu to open a folder of scanned pdf-files to conduct OCR. And - I want to use Acrobat XI (as this is my version), German verison.
    As Acrobat XI is not recordable with the applescript-editor and I do not find a manual of objects and methods I googled a script that worked with Acrobat 9 but not with Acrobat XI. Here you define a "Action Assistant"-Script e.g. called "OCR this" and "click" the item. But as in Acrobat XI this Item is noch in the main-sbubmenu anymore it seems not to work.
    Here is a Screenshot:
    And this is theapplescrpt, tha opens the "Aktionsassistent":
    click the menu item "Aktionsassistent" of menu "Werkzeuge" of menu item "Werkzeuge" of menu "Anzeige" of menu bar item "Anzeige" of menu bar 1
    Butr then I cannot reach "OCR this".
    If any body has a hint - either for clicking "OCR this" or to sript  an OCR on an opened pdf.file with applescript this would be great.
    Thanks,
    Maritn

    AppleScript is documented in the Acrobat SDK. But there is no method for this.

  • How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?

    With Acrobat 6.0 I was able to copy a stamp in the same position (I mean "exactly" the same one) of different pages just by using the "copy/past" tool.
    Now I am using Acrobat XI and it seems like it is not possible anymore: I am copying a stamp and I am trying to past it in anoter page, but it appears in the center of the page (or wherever it wants to...).
    Does anyone have a solution?
    Thanks in advance.

    Thank you very much. I'll be waiting for you message.
    Messaggio originale----
    Da: [email protected]
    Data: 26/01/2015 17.56
    A: "Umberto Gangi"<[email protected]>
    Ogg:  How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        created by Gilad D (try67) in Creating, Editing &amp; Exporting PDFs - View the full discussion
    Well, I was in the same situation so I've developed a tool that allows one to do it. I will send you some additional information about it in a private message.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7132586#7132586 and clicking ‘Correct’ below the answer
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7132586#7132586
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, &amp; "Stop Following"
         Start a new discussion in Creating, Editing &amp; Exporting PDFs by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • How do I delete multiple stamps or fields done in version 7, but now I have in Acrobat Pro 9

    Most of our files were done printed in PDF with version 7. We have inserted a stamp in version 7. But when I open this file in Version 9, these stamps have become field and the usual action in deleting multiple of these was to just go to navigation tabs/field and highlight them all and click on delete - and it would delete all the stamps or fields in Version 7.
    I have noticed that in Version Pro 9, the navigation tab does not have this. How can I delete multiple stamps/or fields in one PDF file?

    Since you have the Pro. version of Acrobat X, you can create an Action to automate this process for you. When you create a new action, in the Save to: icon you can set the export format as seen here.

  • Acrobat XI Pro Crashes when Bates Stamping and/or Sanitizing

    Hi and help! I'm running Windows 7.  I'm trying to bates stamp pdf files (converted PSTs via Acrobat). The program gets as far as allowing me to pick the formatting, but freezes at the "replacing fonts"  satege. (Not certain why it has to do that either).  Was working fine on larger files (10,000 KB) until yesterday. I've broken them into smaller one, unchecked security preferences, but still nothing.  Taking longer to trouble shoot than it did to review the darn 10,000 pages! Any idea would be MOST appreciated! Thanks!

    Hi Erick5,
    What is the exact version of Acrobat XI installed on on you Mac?
    Have you tried to install latest updates for Adobe Acrobat? Also you may try to repair disk permission using Safe mode in Mac: http://support.apple.com/kb/PH14204
    Repairing Disk permissions: https://us.battle.net/support/en/article/repair-disk-permissions-and-repair-disk   
    Regards,
    Ajlan Huda

  • Hi, i have a user that is working with the Adobe acrobat 9 standard. when he adds a stamp to a PDF that he opens from an Email in Outlook, this is the error he gets. (snapshot in the attached files)

    hi good morning,
    I have a user that is working with the Adobe acrobat 9 standard. when he adds a stamp to a PDF that he opens from an Email in Outlook, this is the error he gets. (snapshot in the attached files)
    can you help us with this problem?

    Hi, thanks for the fast response.
    This is the Extended Font Pack i have installed on the Terminal server.
    what do you mean by properly embedded? how can i check that?
    BR
    Eric Mizrachi

  • 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...

  • Acrobat 9 - how do you create a dynamic stamp to include the current date (java script)

    I have seen my question multiple places and times but the resolutions provided have not worked for me.
    I am running Acrobat 9 Pro, cannot run X or XI due to the use of ProSystem fx Engagement.
    I want to create what I thought would be a simple stamp. My initials and the current date. i.e. "crm 01/10/13".
    Simple right? I created a PDF of my initials. Now I just need the text field with the proper Java Script to insert the date, correct?
    I have tried opening "Dynamic.pdf" and copying and pasting the text field that includes the Java Script:
    " event.value = (new Date()).toString(); AFDate_FormatEx("h:MM tt, mmm dd, yyyy"); "
    The date does not update, it stays static.
    I have manually entered the Java Script.
    I have edited the Java Script to remove the "Ex".
    I have edited the Java Script to revise the "yyyy" to "yy".
    I have edited the Java Script to remove the " h:MM tt, " trying different formats to get "dd/mm/yy".
    I have selected "Use single-key accelerators to access tools" in Preferences/General.
    I have tried PDF files, PNG files. I have created the image files from Word and Excel.
    I am at my wits' end. Can someone PLEASE assist me to resolve what should be a simple issue (I hope).
    Thank you in advance.

    Thank you for your response.
    Your script works well, but I still have the same issue.  The date is remaining static to the system date when the stamp is created.  My initial idea was to create a pdf of my initials "crm" and then add the text field with the java script for the date behind my initials.  "crm" + (TEXT FIELD with JS).  I wanted 3 stamps, red, blue and green.  The colors correspond to specific processes in our workflow.
    Your script adds my initials as well as the date.
    My machine is running Windows 7.
    My stamps are located:
    C://Documents/Acrobat Stamps/...
    Acrobat templates:
    C://Program Files (x86)/Adobe/Acrobat 9.0/Acrobat/plug_ins/Annotations/Stamps/ENU/...
    I have no problem creating stamps, just a stamp that will use the current system date.  I HATE using the typewriter for my initials and the date.  I guess I can stamp my initials and then type the date...but what is the point?
    Do you have any further thoughts or suggestions?
    Thank you very much.
    crm 01/11/13 

  • Acrobat X Pro (Mac) - Where do I find my custom dynamic stamps?

    Running on Mavericks (OSX 10.9.3), Acrobat X (10.1.1)
    I've added a custom stamp and now trying to make it "dynamic" by editing it with Javascript. However the stamp file is no where to be found. I've done some research and already tried looking at the following places, with no luck:
    /User/Username/Library 
    - Library folder not found
    /Library/Application Support/Adobe/Acrobat/11.0
    - Not sure why it shows up as 11.0, since I'm running on 10.0. 11.0 Folder is empty and no other folders
    /Applications/Adobe Acrobat Pro X/Contents/Plug-ins
    - Plug-ins folder is empty
    How do I find this elusive stamp and make it dynamic?!
    Thanks in advance for your help!!

    What was your old laptop? Where did you keep the files on it? Please expand on the information that you have not given.

Maybe you are looking for

  • Date format in Mail ToDo list

    I would like to enter due dates in my ToDo list in British format.  The display format is fine.  Setting Preferences and restarting the computer doen't help.  There is a file called ToDo.strings which might be relevant, but can anyone tell me how I f

  • Powerpoint 2007 to pdf file

    I can't convert a powerpoint 2007 to pdf file message not successful.

  • Starting out with a Cintiq in Adobe Flash - A series of frustratingly unfindable simple questions!

    I'm completely new to the Flash IDE, but I have used my Cintiq 13HD with Photoshop in the past. Despite the tablet working well and drawing correctly, so far Flash feels very weird and almost unusable. I've spent hours looking online for answers to t

  • Up grade question

    I have a MacBook (black cover) with Mac OSX 10.5.8, Intelcore processor.  It has 2 mb Ram (2 – 1mbcards) and a 250gb hard drive.  I would like to up grade my Ram to 4 or 8 mb ram and a 500gb hard drive.  Can anyone suggest brand or site to buy thesei

  • Coping the existing scenario in IR and ID

    Hello every one, thnak you every one, at last we have tested scenario(RFC, SOAP) in XI-Dev, message process is successful, 98% credit goes  to SDN users,basically i don't know any thing about XI,  I'm an abaper now i think i know some thing about XI,