Pdf file won't print

Whenever I try to print a pdf file the printer stops working. It only happens with the pdf. I trashed the existing acrobat and it worked for a day, then started doing it again. I hooked up my ibook to the printer and it prints pdf's fine, Any suggestions?

There are numerous posts on the net of slow printing of pdf files with certain HP printers. I myself suffer from this (on an HP1200 Laserjet) and despite installing additional RAM on my otherwise wonderful printer, have seen no improvement. Google ["slow printing" pdf os x] and you will find many many reports of this. If your problem stems from this issue, I don't think a solution has been made available yet, unfortunately.
Here is a sample of other users' experiences from hp's boards:
http://forums1.itrc.hp.com/service/forums/bizsupport/questionanswer.do?threadId= 1037624&admit=-682735245119103053591728353475
null

Similar Messages

  • Pdf file won't print from adobe footer pop up

    Pdf file won't print form adobe footer pop up

    Attached is screenshot.  The menubar footer that allow you to print from adobe.

  • Using Adobe 8.1.2 some PDF files won't print

    Since we've upgraded to the latest version of Reader, 8.1.2, some of the files won't print. For example, this morning I got two PDF files in the same email, they both opened in Reader, but only one of them prints--sending to a Canon ImageRunner 5570 printer/copier/fax machine. I'm not getting any error messages on my computer, it just doesn't print?
    If I save a copy of the unprintable PDF to my desktop, then open in Acrobat 6.0 Standard (older version I know), it prints fine to the same printer.
    Does anyone know what's going on here? Best, David.

    We've been having the same problems printing to a Canon ImageRunner 4570, 8.1.2 won't print but 6 will. We can print to our other HP printer fine from 8.1.2, so it seems to be specific to the Canon. Tried printing from a shallow folder structure, but that hasn't seemed to have helped. Anyone heard if this is unique to the Canon printers? Thanks - Mike

  • Indesign-generated .pdf files won't print

    I realize this question is vague to the point of being unanswerable, but here I go anyway.
    Our department's publication person sent me a number of chapters of our book in progress so that I could print an uncorrected proof to show to our funding source. She emailed me .pdf files generated by InDesign CS2, probably, although it might have been CS3.
    She also emailed me the indesign file for the frontmatter because I had some things to add, so the .pdf for that I generated myself.
    I took everything to a local printer we regularly use. To print this job he was using a large commercial Canon setup I think. None of the .pdfs would print on it. He ended up having to print them all as images for the purposes of creating a proof for me.
    Now, I printed all of them myself on our networked postscript printer, both from a Mac and a Windows machine, no problem.
    Since the files had been emailed to me, and then to him, we thought maybe they got corrupted, so I brought them over on a disk, but that didn't help, not even the one file whose .pdf I generated myself would print.
    So is this an issue that has come up--indesign-generated .pdf files being unprintable on a commercial printer but printable on a postscript machine.

    Dov and Al,
    Yes, I'm sorry, I do realize that this isn't enough to diagnose a problem. I was hoping that this might be something that has come up before and someone would recognize.
    As far as I could tell, he was opening up the print jobs in Acrobat and sending them to his printer, which had its own job monitor. When he consulted that monitor he just said, no, it won't print.
    He's a smart guy and I've done a number of jobs with him that were generated in indesign, so I'm really at a loss to explain what has gone wrong with this one.

  • PDF File Won't print text, just watermark and image

    Hello,
    I have created a fillable/saveable PDF.  I have one client who states that when he attempts to print it, it only prints the watermark and our logo in the upper right corner.  He says that it won't save either.  He has made an attempt at two different computers.  There is a similar PDF we created that he can print and save properly.  So far it's just the one we are having trouble with.
    When we check it on our end, it works fine.  We can save and print it fine.  I have asked what browser he is using and await a reply.
    Any ideas on a setting on his computer, browser or Adobe Reader I can have him check?
    Many thanks!,
    Dave

    As far as the printing, he likely does not have document and markup selected. The document is the original PDF and the markup would be form fields and such.
    As for saving, if he is using Reader he will not be able to save unless you have activated Reader Rights. There are license restrictions on using the activation you should read before you go on your merry way, generally restricting the number of uses (500) of the form for data collection in that case.

  • Orarrp can't print pdf file directly to printer

    oracle remote print utility (orarrp) can't print pdf file directly to printer.
    we expect orarrp utility can handle ".rrpa" file (i.e. pdf file generated on the application server) by directly print the file to the client's printer, i.e. invoke the acrobat reader on the client side, display the the printer selection dialogue, after confirmation print the pdf file, then the acrobat reader close automatically nicely.
    However we are disappointed as the acrobat reader startup and display the pdf file content but does not print and does not close.
    After testing the problem several times, there are some findings:-
    Finding (A):-
    (a) for the success of direct printing of pdf file, a physical path must be provided; we have tried 2 methods:
    1) using drag & drop to copy the pdf file directly to the browser
    2) open pdf file in the browser directly using browser menu-->File-->Open.
    (b) for the failure of direct printing, a virtual path is involved and we have also tried 2 methods:
    1) when web.show_document() is used
    2) enter the url to the URL bar of the browser,
    eg. http://appsvr.com:7777/report/test_printout/APPSVR1094707.rrpa (this is a virtual path/url)
    Finding (B):-
    (a)when the physical path is used, a temporary pdf file is generated in the same directory where the rrpa file exists in the application server,
    e.g. in application server: d:/printout/yyy.pdf is generated for d:/printout/xxx.rrpa when direct print occurs
    (b) however when the virtual path is used, there is no such temp "pdf" file generated and direct print failed.
    May be when virtual path is used, orarrp utility don't know where to generate the temp "pdf" so direct print doesn't occur.
    So, anyone has similar experience or further queries or has solutions, please join.
    Thanks for your attention.

    Hi,
    It is really late to give response this post. But still who ever refering to this post for the same issue this solution is useful for achieving same in background:
    Even same can be used in smartforms, for getting spool request in PDF format as well which will decrease the size of file when printing in SAP printer.
    ct_tline is PDF output:
    DATA: lv_pdfsource TYPE xstring.
    FIELD-SYMBOLS:<p> TYPE x. " <p> type any.
    LOOP AT ct_tline INTO cs_tline.
      ASSIGN cs_tline TO <p> CASTING TYPE x.
      CONCATENATE lv_pdfsource <p> INTO lv_pdfsource IN BYTE MODE.
    ENDLOOP.
    * ->Create spool request in PDF format
    CALL FUNCTION 'ADS_CREATE_PDF_SPOOLJOB'
      EXPORTING
        printer  = 'LOCL'            "Printer name supporting PDF device type
    *   DEST     =
        pages    = 1
        pdf_data = lv_pdfsource        "XSTRING internal table
    *   NAME     =
    *   SUFFIX1  =
    *   SUFFIX2  =
    *   COPIES   =
    *   PRIO     =
        IMMEDIATE_PRINT         = 'X'
    *   AUTO_DELETE             =
    *   TITLELINE               =
    *   RECEIVER =
    *   DIVISION =
    *   AUTHORITY               =
    *   LIFETIME = '0'
    * IMPORTING
    *   SPOOLID  =
    * EXCEPTIONS
    *   NO_DATA  = 1
    *   NOT_PDF  = 2
    *   WRONG_DEVTYPE           = 3
    *   OPERATION_FAILED        = 4
    *   CANNOT_WRITE_FILE       = 5
    *   DEVICE_MISSING          = 6
    *   NO_SUCH_DEVICE          = 7
    *   OTHERS   = 8
    IF sy-subrc <> 0.
    * Implement suitable error handling here
    ENDIF.

  • Pdf files won't open in Safari running on a Mac

    I just upgraded my MacBook Pro to Snow Leopard in preparation for Lion and ever since the upgrade, pdf files won't open in Safari.  I have Reader 9.4.5.  It opens documents that are on my machine, it just won't open in Safari, nor do the documents download.

    MIght be helpful to disable Adobe plugin by going to Adobe Reader's Preferences -> Internet and unchecking "Display PDF in browser using".
    Then dump the atrocious bloated Reader.
    See this https://discussions.apple.com/thread/3252667?start=0&tstart=0 for further solutions.

  • PDF's won't print in Internet Explorer after upgrading to Adobe Reader 11.0.03

    PDF's won't print in Internet Explorer 9 after upgrading to Adobe Reader 11.0.03.
    The print dialogue box won't open....nothing happens.
    Desktop OS is Windows 7 SP1.
    Randy Heil

    Two obvious troubleshooting techniques are to delete and re-install the printer driver (or updating printer driver) and fixing the installation of Acrobat. Have you given those a try?

  • Safari 7.0.6, using Adobe Acrobat 11.0.10, aren't rendering pdf files in the Print Preview screen.  Additionally, only a single, blank page prints for a multi-page pdf document.  Any ideas?

    Safari 7.0.6, using Adobe Acrobat 11.0.10, isn't rendering pdf files in the Print Preview screen.  Additionally, only a single, blank page prints for a multi-page pdf document.  Any ideas?

    Figured it out.  It had nothing to do with the software levels of Safari or Adobe Acrobat.  Here's the fix:
    Open Finder/Applications
    Search "Internet Plug-Ins"
    Move any Adobe plug-ins to the trash
    Quit Safari
    Launch Safari
    Your pdf document should now render in Print Preview and print properly.

  • Saving a Text data to a PDF file without using print option

    Hi,
    I want to save a Text to a PDF file. I want to assign the path of the PDF file as a default one.
    If I use Print options, then it ask for the file path at the run time.
    Is there any method to save to a PDF file without using print option in Labview 8.2.
    Regards,
    Raja

    This question comes up a lot. Did you try searching? It depends on the PDF printer driver that you're using. See here, here, here, ...

  • 3D PDF files in portfolio prints to Adobe PDF printer without content

    3D PDF files in portfolio prints to Adobe PDF printer without content, but if printed from single 3D PDF file everything is fine. I need batch printing (this is the reason I use portfolio) of large amount of 3DPDF files because of the need to have proper preview of these files in browsers. Any ideas or workarounds how to have preview pdf's or jpg's of the single paged 3D PDF files, keeping relevant file names?

    I suspected as much.  I was hopeful it was something like a setting that needed to be changed or a reg hack that needed a bit changed from 0 to 1 to make the printing work as expected.  I only installed the local printer to see if the RDP session
    tunnel was in fact causing the print size to balloon so I will continue to instruct users to use that instead of the local redirected printer.  I am disappointed but not surprised.
    Edit:
    Additionally I have tested the functionality of setting the GPO settings for Easy Print to use the redirected printer's drivers instead of the ones used by easy print, by setting “Computer
    Configuration -> Administrative templates -Windows Components -> Remote Desktop Services > Remote Desktop Session Host -> Printer Redirection”.
    to “Disabled” but
    with no luck.  In fact the printer received the proper Adobe PDF driver, but the job went out into print spool hell and was lost to the ether.  I have concluded that this approach will not bear any fruit.

  • PDF's won't print using Reader 9.4.6

    Have windows Windows XP OS, Adobe Reader 9.4.6.  PDF's won't print, but all other types of docs print fine.  Get error message "Pages not selected", although I've selected pages.  Tried different printer, same problem.  Tried to upgrade to 9.5, but got error message after 96% downloaded. 

    XP will run Adobe Reader 11.0.5: http://get.adobe.com/reader/enterprise/
    I'd suggest upgrading to the newest version.

  • Why I cannot print pdf files on my printer after update to Adobe Reader 10.1.3??

    Recently I update to Adobe Reader 10.1.3 and now I cannot print pdf files on my printer (bizhub C5501), why? Is anyone out
    there know how to solve this issue?

    This may be helpful:
    http://helpx.adobe.com/acrobat/kb/troubleshoot-pdf-printing-acrobat-reader.html

  • All my pdf files can be printed in low quality on my Brother printer but can't print in high quality in the printer menu.

    My problem is that all my pdf files can be printed when I choose "low quality printing" in my Brother printer menu but cannot be printed in "high quality". When trying to print in high quality, the documents load in the printer tray and it says 1 document then disappears and 0 document printing is showing. I have some pdf files that I want to print in color in high quality and black and white but I'm unable to do so. It only prints in low quality for both color and black and white.

    Hello,
    1. Please make sure that your Reader is updated to 11.0.09. Go to Help -> Check for Updates.
    2. Also, please check if there is any new update available for your Printer Driver.
    Regards,
    Anoop

  • Send PDF file directly to printer

    Hi,
    I have a requirement. I need to send a PDF file to a printer directly for printing. Printer name will be fetched dynamically based on a parameter of report.
    Please let me know how can we do it.
    Regards,
    Guddan

    HI,
    Try this in your program. It may be useful to you.
    Declare this for printing options**
    DATA : ioptions LIKE itcpo .
    ioptions-tddest   = 'YOUR_PRINTER_NAME'.
    ioptions-tdimmed  = 'X'.
    ioptions-tdnoprev = 'X'.
    CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          application                 = 'TX'
          form                           = 'formname'
          OPTIONS                    = ioptions
          dialog                         = ' X '
    when you run the program directly it goes to the printer.
    Thanks,
    S.Kalaivani.

Maybe you are looking for

  • I would like to know how to take the music I have ripped from my cd collection , on to my xbox 360 hard drive,and put it on my ipad

    I have quite a few CDs that I have ripped to the hard drive of my xbox 360, and I would like to figure out how to load them on my ipad. Any help would be greatly appreciated. Thank you

  • Samba won't tango

    I have a D-Link 2750 DSL router with a USB port. I'm trying to use it as network attached storage with a 32GB memory stick. My Mac (10.7.5) will mount the disk as guest, I can read files on it, and delete files, and create empty folders, but not writ

  • Messages struck in Queue

    Hi , I am doing a IDoc to JDBC scenarios ,the number of IDoc hitting XI is huges.Most of them pass XI successfully and create records in XI.But some of them get stuck in Queue.I can see them in SMQ2.When I check them they are struck there with the er

  • Calling a url from forms

    Hi! i have created a website using ARCIMS - (if you are not familiar with ARCIMS it is software that is used to create maps) I now want to call URL (website) from a button on my form. I have tried to use web.show_docuement and I am getting errors suc

  • Error in Check Printing for printing checl in foreign currency

    Hi, I am getting the following error if I print check in foreign 23.03.2007 11:35:30 Following foreign currency checks could not be printed                                      F0           255          S The error F0 255 says, The symbol for the cur