Direct Printing PDF via Acrobat 8.0 under Lion

Direct printing a PDF via Acrobat 8.0 worked under Snow Leopard but no longer under Lion. I have a relatively old installation of CS3 on my MacBookPro and wanted to print a pages document with 12 x 12 cm size onto an A4 page (with integrated cutting marks) - this is not possible with the integrated PDF printer in Lion an so i decided to use Acrobat 8.0.
The Console says the following:
Process:         DistillerIntf [30793]
Path:            /Applications/Adobe Acrobat 8 Professional/Acrobat Distiller.app/Contents/MacOS/DistillerIntf
Identifier:      DistillerIntf
Version:         ??? (???)
Code Type:       X86 (Native)
Parent Process:  pdf800 [30788]
Date/Time:       2011-11-05 13:18:36.563 +0100
OS Version:      Mac OS X 10.7.2 (11C74)
Report Version:  9
Crashed Thread:  7
Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
VM Regions Near 0:
--> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat 8 Professional/Acrobat Distiller.app/Contents/MacOS/DistillerIntf
    __TEXT                 0000000000001000-0000000000003000 [    8K] r-x/rwx SM=COW  /Applications/Adobe Acrobat 8 Professional/Acrobat Distiller.app/Contents/MacOS/DistillerIntf
Has anybody an idea how to solve this problem. Of course i posted this error on the Adobe Help forums but since these guys only want to sell the newest Suites if have no hope, that somebody will respond to my question - and i think it is a Lion issue (CUPS problem).
http://forums.adobe.com/thread/921666

This is right, but since the upgrade to Lion was a relatively big one (with many functionalities that i have be missing before) i think i will not go back just to regain a normal-working direct PDF printing. Nevertheless i think, if the very old CS3 worked until Snow Leopard it would be very easy for an Apple Engineer to figure out, which trick would allow Acrobat to direct print again - i don't think the underlying CUPS has changed very much - also i found a lot of similar error reports on the web (mostly Acrobat related after updates from System ) which were solved via correcting some rights in the library (this didn't do the trick for me ...)
Best problem solving would be, that Adobe Software gets cheaper - i have installed the newest Aperture, iWork, Office, iLife, Mindmanager, ... - if you are not a student but a hobby worker these software packages are quite affordable ...

Similar Messages

  • Is there a way to print or direct a PDF from Acrobat to another local app?

    Is there a way to print or direct a PDF from Acrobat to another local app? I assume not and there is nothing suitable that I can find in the API.

    Hey there -
    Nope - at least not when printing to PDF. IOS is a tidge, er, limiting.
    I re-posted in the IOS area; we'll see what happens there.
    Thanks again,
    Russ

  • Set filename of printed PDF via script

    Hi folks!
    I have a little problem with generating a PDF. First my Workflow:
    I have a InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After merging it, we have to generate a PDF file. This PDF file is opened within acrobat. Within the document, I'm searching for an ID each record has so I can split the document to 100 files (each with 6 pages) and name it by the ID I found.
    The script within Acrobat is finished and working. I thought, the InDesign script is finished ,too. But I was wrong -.-
    I merged the databasefile with the document and exported it as PDF. But after exporting, we noticed that the script within Acrobat isn't finding the adressheader where the ID is in. The script only noticed the text after that header. The result is, that Acrobat get's always "null" as ID
    If we print the PDF with our PDFprinter, the header could be read by our Acrobat script. I don't know why this is... But now I changed the script to print the files via our PDF printer. Unfortunately I can't set a name for my exported file - do you know if there is a possibility to print PDF's without prompting after each one and with a via script given name?
    Here you can see the old script for InDesign and right after it, the Acrobat sript. Maybe I made some mistake by generating my PDFexport and don't need to use the printer?
    INDESIGN SCRIPT:
      * prompts filebrowser and stores name and path of file in variable
    var sourceDocument = File.openDialog("Bitte Indesign-Dokument auswählen", "*.indd", false);
      * stores only prefix of filename for use as new filename
    var newName = sourceDocument.name.substr(0,  sourceDocument.name.length-5);
      * stores folder where file is stored
    var dbSourceFolder = sourceDocument.parent+"/";
      * prompts for databasefile where generating should begin
    var dbstartfile = File.openDialog("Bitte Start-Datenbankdatei auswählen", "*.txt", false);
      * gets basename of databasefile
    var dbstartfilename = dbstartfile.name.slice(0, dbstartfile.name.search(/_Teil+/));
      * gets number of first databasefile
    var i = dbstartfile.name.slice(dbstartfile.name.search(/_Teil+/)+5).slice(0, -4);
      * generates path name and name of first databasefile to use
    var dbSource = dbstartfile;
       *set PDF preset for generating PDF
    var PDFPreset= app.pdfExportPresets.item("GAG-PDF");
       * stops throwing of alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
    // if databasefile isn't existing message will be thrown
    if( dbSource.exists == false ) {
        // restart of alert throwing
        app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
        alert("Datei " + dbSourceFolder+dbprefix+"_Teil"+i+".txt konnte nicht gefunden werden! \n\rBitte starten Sie den Vorgang erneut und geben Sie die richtige Datenbankdatei an." );
    // else process starts
    else {
        while(  dbSource.exists == true ) {
            // opens source indesign document without showing it
            mergeDocument = app.open(File(sourceDocument), false);
            // sets which databasefile should be used for data merge
            mergeDocument.dataMergeProperties.selectDataSource(File(dbSource));
            // starts merging of indesign document and database file
            mergeDocument.dataMergeProperties.mergeRecords();
            // exports generated document as PDF file
            app.activeDocument.exportFile(ExportFormat.pdfType, File(sourceDocument.parent+"/"+newName+"_Teil"+i+".pdf"), false, PDFPreset);
            // closes opened indesign document
            mergeDocument.close(SaveOptions.no);
            i++;
            // change filename of database file to get next file
            dbSource = File(dbSource.parent+"/"+dbstartfilename+"_Teil"+i+".txt");
    // restart of alert throwing
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    alert("PDF-Generierung abgeschlossen!");
    ACROBAT SCRIPT:
    * Path where files should be saved
    * Special Characters like spaces should be escaped with \
    * If you want to modify the folder, use following form:
    * "/Driveletter/Foldername/../LastFolderName/"
    * Make sure not to forget the / before and after the location
    var filepath = "/c/pdf_split_test/";
    * Number of expose pages - feel free to change
    var pageType = app.prompt("Bitte geben Sie die gewünschte Seitenzahl der Exposés an.", "");
    alert(pageType);
    * regular expression for search
    var idNumber = /08\d\d\d\d\-\d\d\d\-\d\d\d\d\d-\d\d\d-\d\d/g;
    * if possible this function extracts the searched number as string
    * @param rematch string which should be searched in document
    * @return null if rematch is not found or string if rematch is found
    function ExtractFromDocument(reMatch) {
      try {
             var Out = new Object();
             for (var i = 0; i < 1; i++)
              numWords = this.getPageNumWords(i);
              var PageText = "";
              for (var j = 0; j < 30;j++) {
                  var word = this.getPageNthWord(i,j,false);
                  PageText += word;
              var strMatches = PageText.match(reMatch);
              if (strMatches == null) continue;
          return strMatches;
      } catch(e)
          app.alert("Processing error: "+e)
    * tries to load given filename (extracted number)
    * @param filename string of file which should be checked
    * @param n number to iterate while checking for files
    * @return true if file exists or false if not
    function checkIfFileExists(filename, n) {
        var existingDoc = false;
        try {
            if( n == 0) {
                var checkDoc = app.openDoc(filepath+filename+"-000.pdf");
            } else {
                var checkDoc = app.openDoc(filepath+filename+"-000_"+n+".pdf");
            checkDoc.closeDoc();
            existingDoc = true;
        } catch (e) {
        if( existingDoc == true ) {
            n = n+1;
            n = checkIfFileExists(filename, n);
        return n;
    var pageAmount = this.numPages;
    for( i=0; i<pageAmount; i+pageType ) {
        var filename = ExtractFromDocument(idNumber);
        fileExistence = checkIfFileExists(filename, 0);
        if(fileExistence != 0) {
            this.extractPages({nEnd:(pageType-1), cPath : filepath+filename+"-000_"+fileExistence+".pdf"}); 
        } else {
            this.extractPages({nEnd:(pageType-1), cPath : filepath+filename+"-000.pdf"});
        this.deletePages({nStart:0, nEnd: pageType-1});

    Hi,
    I have a little problem with generating a PDF. First my Workflow:
    I have a InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After merging it, we have to generate a PDF file. This PDF file is opened within acrobat. Within the document, I'm searching for an ID each record has so I can split the document to 100 files (each with 6 pages) and name it by the ID I found.
    Why you don't export 6-page PDFs directly from InDesign?
    robin
    www.adobescripts.co.uk

  • TPS file is not deleted after FrameMaker creates PDFs via Acrobat 8

    Using FrameMaker 7.2 build 158, and Adobe Acrobat 8, when creating PDF files, the temporary PostScript file (*.tps), which is created before the final PDF, is not deleted after the creation of the PDF is complete.
    This is a big deal for us because we are using a tool which hooks into the PDF-creation of FrameMaker/Distiller, and is reliant on this TPS file being deleted.
    Is this a known bug? Does Adobe know about this? Do any other users have workarounds for this?

    Thomas,
    FWIW, speaking from experience with the Save As route, I've seen
    random "phunnies" in the final PDFs (such as the missing fonts
    issues), a bigger .tps file than the .ps file generated from directly
    printing to file, slower throughput in both the intermediate
    postscript file creation and actual distilling (probably tied in to
    the larger .tps file) and other differences from what the joboptions
    should have been.
    There should not have been any differences in the file sizes being
    created if the same printer instance/configuration was actually being
    used. I also see this on some automated runs with Miramo. It's not
    consistent either - sometimes it works fine and then the next run, the
    process is considerably slower and there are dropouts in the PDFs.
    So far, manually printing to a ps file and distilling always seems to
    work without any issues.
    Your mileage may vary.
    Arnis

  • Printing PDF Adobe Acrobat Documents

    I receive emails from my job and the attachments are PDF Adobe Acrobat Documents and I get an error message when I try to print them.  The error message is:  PROP Res DLL Not Loaded.  I have talked to a computer tech to see why I could not print those attachments and they said that I needed to download the Adobe Flash Player.  I have done that just recently and I was given the notification that it did download.  I went to try to print those documents and I get the same error message: Prop Res DLL Not Loaded.  What do I have to do to be able to print those documents?

    This is usually associated with LexMark printers installed under Windows.  A possible fix is given at
    http://support.microsoft.com/kb/918730

  • How to directly print PDF file(which is stored in SAP) in ABAP report?

    Hi experts,
    I searched SDN for printing PDF file but everything is about OTF to PDF and to use fm: CONVERT_OTF which is not the solution for my problem.
    I have to build ABAP report which will take the PDF file attached to SAP document (CV02N) and print it.So, which function module or program can I use to print the PDF file?
    Thank you very much.
    Kind regards,
    Danijela

    Dear
       this is the code for down load smartform for PDF format. its working properly
    2nd way is
    set your Acrobat Printer as your default printer
    when you print select printer as LOCAL
    then you will file dialog box for Naming PDF
    DATA  :  T_OTF          TYPE ITCOO OCCURS 0 WITH HEADER LINE.
      DATA  :  WA_CTRLOP      TYPE SSFCTRLOP.
      DATA  :  WA_OUTOPT      TYPE SSFCOMPOP.
      DATA  :  T_OTFDATA      TYPE SSFCRESCL.
      DATA  :  T_PDF_TAB      LIKE TLINE OCCURS 0 WITH HEADER LINE.
      DATA  :  V_FILESIZE     TYPE I.
      DATA  :  W_BIN_SIZE     TYPE I.
      WA_CTRLOP-GETOTF = 'X'.
      WA_CTRLOP-NO_DIALOG = 'X'.
      WA_OUTOPT-TDNOPREV = 'X'.
      CALL FUNCTION P_LV_FNAME
        EXPORTING
          OUTPUT_OPTIONS     = WA_OUTOPT
          USER_SETTINGS      = 'X'
          CONTROL_PARAMETERS = WA_CTRLOP
        IMPORTING
          JOB_OUTPUT_INFO    = T_OTFDATA
        EXCEPTIONS
          FORMATTING_ERROR   = 1
          INTERNAL_ERROR     = 2
          SEND_ERROR         = 3
          USER_CANCELED      = 4
          OTHERS             = 5.
      T_OTF[] = T_OTFDATA-OTFDATA[].
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = 'PDF'
          MAX_LINEWIDTH         = 132
        IMPORTING
          BIN_FILESIZE          = W_BIN_SIZE
        TABLES
          OTF                   = T_OTF
          LINES                 = T_PDF_TAB
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          OTHERS                = 4.
      DATA  :  LV_DOWN_FILE TYPE RLGRAP-FILENAME.
      DATA  :  LV_TEXT      TYPE STRING.
      CASE SSCRFIELDS-UCOMM.
        WHEN 'REPRUNMOLD'.
          CONCATENATE '(' SO_SCHDT-LOW '-' SO_PLANT-LOW ')' INTO LV_TEXT.
          CONCATENATE '\\lkdb01\FTP-Loadstar\0.PP_Planning\ZPP014\Run_Moulds\' SY-DATUM '-' SY-TIMLO '-' 'Running Mould' '-' LV_TEXT '.pdf' INTO LV_DOWN_FILE SEPARATED BY SPACE.
        WHEN  'REPLINESIT'.
          CONCATENATE '(' SO_SCHDT-LOW '-' SO_PLANT-LOW '-' SO_LINE2-LOW ')' INTO LV_TEXT.
          CONCATENATE '\\lkdb01\FTP-Loadstar\0.PP_Planning\ZPP014\Line_Situation\' SY-DATUM '-' SY-TIMLO '-' 'Line Situation' '-' LV_TEXT '.pdf' INTO LV_DOWN_FILE SEPARATED BY SPACE.
      ENDCASE.
      CALL FUNCTION 'WS_DOWNLOAD'
        EXPORTING
          BIN_FILESIZE            = W_BIN_SIZE
          FILENAME                = LV_DOWN_FILE
          FILETYPE                = 'BIN'
        IMPORTING
          FILELENGTH              = V_FILESIZE
        TABLES
          DATA_TAB                = T_PDF_TAB
        EXCEPTIONS
          FILE_OPEN_ERROR         = 1
          FILE_WRITE_ERROR        = 2
          INVALID_FILESIZE        = 3
          INVALID_TYPE            = 4
          NO_BATCH                = 5
          UNKNOWN_ERROR           = 6
          INVALID_TABLE_WIDTH     = 7
          GUI_REFUSE_FILETRANSFER = 8
          CUSTOMER_ERROR          = 9
          OTHERS                  = 10.
      IF SY-SUBRC <> 0.
        MESSAGE  'File not downloaded succesfully' TYPE 'I'.
        EXIT.
      ELSE.
        MESSAGE 'PDF File downloaded succesfully' TYPE 'I'.
      ENDIF.
    ENDFORM.                    " Print_PDF
    Rewards if useful.

  • Problem printing PDF with Acrobat Pro 9.4.4

    Hi!
    I can't correctly print a PDF with Acrobat Pro that was created in Indesign CS5.
    I want to print it on a letter format (8,5 X 11") and it offers me a format of 8,49 X 10,99". It results in having my document being printed as tile with it's original format 12 X 21,5" as if I didn't adjust the format to be reduced.
    I temporary used Preview to print my PDF, but now I can't as the encoding in which I received the PDF used to be "Creo Normalizer JTP" and now it is "Adobe PDF Library 9.9"
    If anyone can help!
    This is my first time here, thanks in advance for your help

    Here's what it looks like (I work in french, hope you can understand)
    I just updated my software, thanks for that!
    Now, my problem is still on... I still have the very same result when I print. I did selected the correct Page Scalling I needed. I did selected the paper size I wanted. I chose Shrink to Printable Area and I tried with Fit to Printable Area.
    Since I've had this problem the size appears as : 8,49 X 10,99 (Instead of 8,5 X 11). I tried with Legal (8,5 X 14) but it appears as 8,49 X 13,99. I went through the preferences, but I can't find anything that could be the problem.
    Any other idea?
    Thanks!!
    Also, Preview was very helpful, as it did print my PDF correctly! I understand it's not the best... but it did the job

  • Directly print PDF form in WebDynpro ABAP

    Hello folks,
    one little question.
    Is it possible to directly print an PDF form in an WebDynpro Abap Application?
    Thanks,
    Alex

    I don´t understand your question. You don´t provide much information.
    You have 2 options:
    1) write a printing program (like non-WDA form etc.) and run it in background
    2) tell user to use the Reader embedded in WDA window to print his/her form
    Otto

  • Can not longer print pdf from Acrobat Reader

    All of a sudden I can no longer print pdf files to my printer.  It is shared by all the computers in our household and any time I try to print from any of the computers now, instead of printing it creates a prn file instead.  I can find no option in the printer properties where selecting or deselecting something to enable or disable printing to files.  All the systems are either MS Vista or Windows 7.  Though there are commands that allow sending a prn to a network printer, they require a named print server, which we don’t have on our peer-to-peer network.
    It is interesting that I can create a pdf file in Photoshop on my system and it will print from Photoshop.  I can also print the “problematic” documents for Photoshop, which I only have on one system. But anything created in Acrobat will not print natively from Acrobat reader.

    In the Print dialog click on Advanced, then uncheck Print to File.

  • Printing PDFs via cups ignores job attributes

    I'm trying to print PDF documents from Linux (using CUPS to translate the PDF to Postscript before sending it to the printer). However, the print job attributes (number of copies, paper size, etc) are all being lost somewhere in the translation.
    I'm using Red Hat 3 (enterprise), CUPS 1.1.17 and JDK 1.4.2_09
    Has anyone seen a problem like this?
    I've run similar code on windows. It doesn't print PDFs, but the code that sets the attributes is the same. I don't have a problem there.

    I'm trying to print PDF documents from Linux (using CUPS to translate the PDF to Postscript before sending it to the printer). However, the print job attributes (number of copies, paper size, etc) are all being lost somewhere in the translation.
    I'm using Red Hat 3 (enterprise), CUPS 1.1.17 and JDK 1.4.2_09
    Has anyone seen a problem like this?
    I've run similar code on windows. It doesn't print PDFs, but the code that sets the attributes is the same. I don't have a problem there.

  • Printing a PDF via Acrobat Javascript

    Hi -
    I have a need to print a PDF programmatically, via Javascript.  The PDF is embedded in a Web page.  I use postMessage to communicate with the PDF.
    I've created a simple HTML page with an embedded PDF, and a Javascript link to call my "Print" function. Here's a code snippet:
    <body>
             <a href="javascript:doPrint();">Print</a>
             <object id="PDFObj" data="testPDF.pdf" type="application/pdf" width="400" height="400" />     
    </body>
    In the HTML document's HEAD, I've added the following Javascript which posts the message to the PDF:
    <script language="JavaScript">
            function doPrint() {
                pdfObject = document.getElementById("PDFObj");
                alert("Hello from Javascript...");
                pdfObject.postMessage(["Print", "Print"]);
    </script>
    Finally, I've added an Acrobat Javascript function in the PDF document to listen for the postMessage event:
    function myOnMessage(aMessage)
        app.alert("Hello from the PDF");
           // print routines here
    var msgHandlerObject = new Object();
    msgHandlerObject.onMessage = myOnMessage;
    msgHandlerObject.onError = myOnError;
    msgHandlerObject.onDisclose = myOnDisclose;
    function myOnDisclose(cURL,cDocumentURL)
    return true;
    function myOnError(error, aMessage)
    app.alert(error);
    this.hostContainer.messageHandler = msgHandlerObject;
    Here's my problem: when I test this code and click the HREF Javascript link, I see "Hello from Javascript..." and "Hello from the PDF," so I know the postMessage event is working.  However, I've tried every print command I know in the myOnMessage function, and nothing seems to work:
    app.execMenuItem("Print"); // doesn't seem to work
    this.print(); // doesn't seem to work, even when I pass in all the params, etc
    I've also tried getting print params and passing those in, nothing seems to work.  Am I missing something?  Environement is Acrobat 9 Pro, browser's tested include Chrome 2.0, IE6.  I've attached two files, the HTML bit and the PDF I'm trying to print.  Any help is greatly appreciated!

    You have to be careful when using the ActiveX control to communicate with system functions like printing.  Because it can be embedded in anything that supports ActiveX, some functionality is limited from being called from JavaScript as it may interfere with the host application.
    Check out the IAC API Reference (also included with the SDK) and the methods under AxAcroPDFLib.AxAcroPDF.  There are some print functions in there (like PrintAll) that you can call on the ActiveX control directly, as in from your doPrint() method in your HTML page without using the hostContainer.  You would basically just call:
    pdfObject = document.getElementById("PDFObj");
    pdfObject.PrintAll();
    These methods were designed specifically to work with the ActiveX control when embedded in a host application, and can be used to print a PDF embedded in a web page.

  • Print PDF via online subscription direct

    How can you create a PDF using adobe online subscription directly from the "print" function?

    Hi KCM1977,
    You'll need to install the CreatePDF Desktop Printer - please see: http://forums.adobe.com/docs/DOC-1495
    Please let us know if you have any questions.
    Thanks!
    -David

  • Print pdf in Acrobat 9 stopped working for all programs (only the pdf converter office add-in works)

    Windows 7 x64 has a problem:
    http://social.answers.microsoft.com/Forums/en-US/w7files/thread/0617cfb6-dd06-4cb6-874d-0c ec97d3a310?prof=required&ppud=4
    To solve that nesting issue, I followed these instructions:
    In  order to accomplish the proper redirection, you need two junctions:
    1)  A Local Settings junction, that will forward programs going to
    %userprofile%\Local  Settings to the new folder.
    2) An Application Data junctions  *inside of the new folder* that points back on itself, to get programs  accessing %userprofile%\LocalSettings\Application Data.
    If you  think about it, it makes sense ... when the program is accessing local  settings, it will get forwarded to the folder it needs to be in,  however, it is also accessing a folder named Application Data *inside of  the correct folder it needs* (since it has already been redirected by  the Local Settings junction), so the Application Data junction has to  point back on itself for things to function properly.
    I would  suggest checking the security settings on your Application Data junction  (C:\users\yourname\appdata\local) (you will need to select show operating system files from folder options in an explorer window).
    Go to the  security tab, click advanced, then edit, and make sure you see a deny  permission for everyone on the list.
    If there isn't one listed,  create one for "Everyone" and check the box under Deny next to "read  folder / list data".
    Once I added "everyone" and "deny", I received 300 error messages, which I all clicked on "continue".
    After each restart, no program worked, and hundreds of error messages popped up.
    So, I removed the "everyone denied" entry again.
    Now, all programs start normally.
    But:
    If I want to say "print to pdf", it goes through the motions, prints something, and opens the pdf dialogue, and at exactly half time of the progress bar says "stopped". No matter if I want to pront from internet explorer, windows explorer, acrobat, word, editor, ...
    Why?
    How can I reverse this?

    I can't open the Form Tools though is what I'm saying. When I open the document in Acrobat 9 Pro I have no form tools.
    I have to go to [Forms] -> [Edit Forms in Designer] in order to open the form tools.
    Only when I select to open in designer I do not get the Acrobat Pro Designer, it automatically opens the document in LiveCycle and I have no option or ability to change the document designer to Acrobat Pro.
    Is there some way I can "Force" the docement to open in Acrobat 9 Pro designer JUST so I can add the print button?

  • [JS CS3 Win] Export to PDF then auto-print PDF from Acrobat

    Hello!
    I am working on the script that is exporting pages to PDF, and would like to automatically send exported PDF to print from Acrobat.
    I get the scripting part for exporting to PDF, and it's working very well, but I have trouble on the part of the script that tells Acrobat to open the PDF and send it to printer. Script is run from InDesign, so I thought this is right forum to ask.
    The following part of the script is working OK on one computer, but on other two computers with similar configuration (CS3. Windows, Acrobat 8) it doesn't work at all and I can't figure out where is the problem:
    var printFile = "/c/temp/test.pdf";
    var remoteScript = "printFile = decodeURI('"+printFile+"');\n";
    remoteScript += "var doc = app.openDoc({cPath: printFile});\n";
    remoteScript += "var pp = doc.getPrintParams();\n";
    remoteScript += "pp.pageHandling = pp.constants.handling.shrink;\n";
    remoteScript += "pp.NumCopies = 2;\n";
    remoteScript += "pp.interactive = pp.constants.interactionLevel.silent;\n";
    remoteScript += "pp.printerName = '\\\\hrhqzgw23prn01\\\hr300019ps';\n";
    remoteScript += "doc.print(pp);\n";
    remoteScript += "doc.closeDoc(true);";
    acrobat.executeScript(remoteScript);
    I would appreciate any help. thank you.

    Hi Mark,
    Here is a sample script. It exports the active InDesign document to pdf file, using its base name, to the root of C drive. Then opens the exported file in Acrobat, prints it to the default printer and silently closes it.
    Tested on InDesign 5.0.3, Acrobat 8.0.0, Windows XP SP3.
    #target indesign
    var myIndesignDoc = app.activeDocument;
    var myBaseName = GetFileNameOnly(myIndesignDoc.name);
    var myFile = new File( "/C/" + myBaseName + ".pdf" );
    myIndesignDoc.exportFile( ExportFormat.pdfType, myFile, false );
    var myScript = 'var myAcrobatDoc = app.openDoc( "/C/' + myBaseName + '.pdf" );\n';
    myScript += 'myAcrobatDoc.print( {bUI: false, bSilent: true} );\n';
    myScript += 'myAcrobatDoc.closeDoc( true );';
    var bt = new BridgeTalk;
    bt.target = "acrobat";
    bt.body = myScript;
    bt.send();
    function GetFileNameOnly(myFileName) {
        var myString = "";
        var myResult = myFileName.lastIndexOf(".");
        if (myResult == -1) {
            myString = myFileName;
        else {
            myString = myFileName.substr(0, myResult);
        return myString;
    Short explanation of the acrobat script:
    1. Open the pdf file, just exported from InDesign
    var myAcrobatDoc = app.openDoc( "/C/' + myBaseName + '.pdf" );
    2. To print the document silently I use the doc object’s print method and set the following parameters:
    bUI -- Determines whether to present a user interface to the user
    bSilent -- Suppresses the Cancel dialog box while the document is printed
    myAcrobatDoc.print( {bUI: false, bSilent: true} );
    3. Close the document without notifying the user:
    myAcrobatDoc.closeDoc( true );
    Regards,
    Kasyan

  • Printing PDF with Acrobat 9.0 for CS4 and Mac OSx10.6.2 not working properly.

    I downloaded the CS4 for MAC Trial before purchasing.  I work on a MacBook Pro OSx10.6.2.  The download and installation was successful.
    However, upon launching the Adobe Acrobat 9.0 software, I received the following message: "REPAIR SETUP: Acrobat has detected that there are missing components that require repair. Select the optional components you would like to repair and click continue."  My choices were: 1) Adobe PDF Printer, and 2) Adobe PDF View Safari Plugin.  I chose Continue.  When I am in another program (like Quark 7.5), and try to Print to the Adobe 9.0 Printer, the document spools, as if printing, but I do not get prompted to save the PDF anywhere, and when it is done "printing" there is not a document saved anywhere.  It appears to be getting stuck in the distilled, although I don't really know. I tried un-installing the entire CS4 software and re-installing and had the same exact thing happen again.  Can anyone help?

    Do as I do on some items. Install a utility called TypeIt4Me the go to the announcement. Copy the link. choose add clipping give it a name put / or \ at the end so it you type the same words normally it don't trigger the typeIt4Me entry.  then when you need to type the words (code used) and wait for TypeIt4Me enter it.  the item highlighted in my attachment is this:
    http://indesignsecrets.com/acrobats-adobe-pdf-printer-replaced-in-snow-leopard.php
    which is the link to the InDesign article about snow leopard and creating Adobe quality PDF's

Maybe you are looking for

  • New dual mac pro using fcp studio doesn't see external crt monitor

    I recently invested in a system to re-edit film and set up my system...dual editing up is fine I put my larger dell monitor through the 3870 which is in bay one and the browser comes up on the 2nd monitor connected to the 2600 in bay 2. The problem i

  • Oracle 91 client under linux ppc

    hello, i´m searching for the oracle client for linux on ppc(pseries 630/670/690) the cd-set for intel linux is, for sure, not running. there you couldn´t even start the runInstaller. so which cd set i have to download. that are always more than 1gb t

  • External HTTP-Webservice with empty response

    Hi community, I have implemented an external http webservice which is working fine when I test it directly via se80 - I receive the results I want. Now I want to capsulate it into a function module but always receive a empty response structure. I cal

  • Asking Account Assignment Category for Direct Materials

    Experts, ECS Scenario with PPS, ECC EHP4, SRM7.0. The system is giving error as 'account assignment category is missing' for 'direct materials'. We have same problem while creating SC in SRM also and for PDP als. Items with account assignment are wor

  • BUG in ThreadLocal Example

    Hi, I just spot a bug in ThreadLocal example demonstrated in the JAVA API doc. here is the code snippet: public class UniqueThreadIdGenerator {           private static final AtomicInteger uniqueId = new AtomicInteger(0); private static final ThreadL