PDFs won't print on new HP printer

I recently added a HP CM1415fnw printer in my office and I cannot print any PDF documents. Word and Excel print fine. Why?

Happily, Windows 7 is in and everything seems to work fine. I have to
navigate around my desktop a bit differently, but everything seems to be
compatible. I especially have to work now with printing Word docs to PDF.
I'll get there...
Bill@VT http://forums.adobe.com/people/Bill%40VT created the discussion
"Re: PDFs won't print on new HP printer"
To view the discussion, visit:
http://forums.adobe.com/message/4566283#4566283

Similar Messages

  • Sample for printing report directly to printer

    Hi Guys
    Does anyone have a report which can print directly to the printer when the radio button option is selected .
    I want to print the ALV in excel format.
    Printer >>>>.
    Screeb >>>>>
    Regards
    P.Eslam

    Hi
    I tried with this FM but giving short dump error can anyone explain why pls see the below program for testing.
    REPORT  Z_ESLP_ZTCODE .
    "LINE-SIZE 600 .
    TABLES : AGR_TCODES,
    AGR_USERS,
    TSTCT.
    type-pools: slis.                                 "ALV Declarations
    CONSTANTS MARK VALUE 'X'.
    *Data Declaration
    LIFNR, NAME1, STRAS, ORT01, REGIO, PSTLZ, PFACH, LAND1
    TYPES: BEGIN OF  T_DISP,
    AGR_TCODES TYPE AGR_TCODES-TCODE ,             " Transaction code A
    AGR_NAME   TYPE AGR_TCODES-AGR_NAME,           " Role Name B
    AGR_UNAME  TYPE AGR_USERS-UNAME,               " Short User Name B
    TTEXT      TYPE TSTCT-TTEXT,                   " Description Name C
    TEXTC      TYPE USER_ADDR-NAME_TEXTC,          " Long User Name
    SPRSL      TYPE TSTCT-SPRSL ,                  " Language c
    END OF t_disp.
    DATA: it_disp TYPE STANDARD TABLE OF t_disp INITIAL SIZE 0,
          wa_disp TYPE t_disp.
    *ALV data declarations
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
          gd_tab_group type slis_t_sp_group_alv,
          gd_layout    type slis_layout_alv,
          gd_repid     like sy-repid,
          gt_events     type slis_t_event,
          gd_prntparams type slis_print_alv.
    DATA:L_PARAMS TYPE PRI_PARAMS,
           L_VALID TYPE C.
    DATA: w_file      TYPE  rlgrap-filename VALUE 'it_value'.
    SELECTION PARAMETER CRITERIA
    SELECTION-SCREEN BEGIN OF BLOCK BLK WITH FRAME.
    SELECTION-SCREEN BEGIN OF BLOCK BLK1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: P_TCODE FOR AGR_TCODES-TCODE  , "OBLIGATORY, "no-extension no intervals,
    U_NAME FOR AGR_USERS-UNAME,
    R_NAME FOR AGR_USERS-AGR_NAME .
    SELECTION-SCREEN END OF BLOCK BLK1.
    SELECTION-SCREEN BEGIN OF BLOCK BLK2 WITH FRAME TITLE TEXT-002.
    SELECTION-SCREEN END OF BLOCK BLK2.
    SELECTION-SCREEN END OF BLOCK BLK.
    SELECTION-SCREEN BEGIN OF BLOCK radio WITH FRAME.
      PARAMETERS :scr   RADIOBUTTON GROUP rbg1 ,
                  pr  RADIOBUTTON GROUP rbg1 .
      SELECTION-SCREEN END OF BLOCK radio.
    *Start-of-selection.
    START-OF-SELECTION.
    perform data_retrieval.
    perform build_fieldcatalog.
    perform build_layout.
    perform build_events.
    perform build_print_params.
    perform display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    form build_fieldcatalog.
      fieldcatalog-fieldname   = 'AGR_UNAME'.
      fieldcatalog-seltext_m   = 'User'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 10.
      fieldcatalog-emphasize   = 'X'.
      fieldcatalog-key         = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'TEXTC'.
      fieldcatalog-seltext_m   = 'Name'.
      fieldcatalog-outputlen   = 50.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'AGR_NAME'.
      fieldcatalog-seltext_m   = 'Role Name'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'AGR_TCODES'.
      fieldcatalog-seltext_m   = 'Trans Code'.
      fieldcatalog-col_pos     = 3.
      fieldcatalog-outputlen   = 15.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'TTEXT'.
      fieldcatalog-seltext_m   = 'DESCRIPTION'.
      fieldcatalog-outputlen   = 40.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    form build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    endform.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    form display_alv_report.
      gd_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
                i_callback_user_command = 'USER_COMMAND'
               i_grid_title           = outtext
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
               it_special_groups       = gd_tabgroup
                it_events               = gt_events
                is_print                = gd_prntparams
                i_save                  = 'X'
               is_variant              = z_template
           tables
                t_outtab                = it_disp
           exceptions
                program_error           = 1
                others                  = 2.
      if sy-subrc  EQ 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form lfa1 table and populate itab it_lfa1
    form data_retrieval.
    CASE MARK.
        WHEN scr.
       SELECT AGR_TCODESTCODE AGR_TCODESAGR_NAME AGR_USERSUNAME TSTCTTTEXT USER_ADDR~NAME_TEXTC
      INTO TABLE IT_DISP
      FROM AGR_TCODES
      INNER JOIN AGR_USERS
      ON  AGR_TCODESAGR_NAME = AGR_USERSAGR_NAME
      INNER JOIN USER_ADDR
      ON AGR_USERSUNAME = USER_ADDRBNAME
      INNER JOIN TSTCT
      ON AGR_TCODESTCODE = TSTCTTCODE
      where
      agr_tcodes~tcode in p_tcode
      and
      agr_users~uname in u_name
      and
      agr_tcodes~agr_name in r_name
      and
      TSTCT~SPRSL EQ 'E'.
        WHEN pr.
      CALL FUNCTION 'FTBU_START_EXCEL'
        EXPORTING
          data_name           = w_file
          data_path_flag      = 'T'
    *---Start Excel and not Wait
          wait                = ' '
        TABLES
          data_tab             = it_disp
        EXCEPTIONS
          no_batch            = 1
          excel_not_installed = 2
          wrong_version       = 3
          internal_error      = 4
          invalid_type        = 5
          cancelled           = 6
          download_error      = 7
          OTHERS              = 8.
          NEW-PAGE PRINT ON   PARAMETERS L_PARAMS NO DIALOG.
           write : 'print'.
          NEW-PAGE PRINT ON.
    ENDCASE.
    endform.                    " DATA_RETRIEVAL
    Form  TOP-OF-PAGE                                                 *
    ALV Report Header                                                 *
    Form top-of-page.
    *ALV Header declarations
    data: t_header type slis_t_listheader,
          wa_header type slis_listheader,
          t_line like wa_header-info,
          ld_lines type i,
          ld_linesc(10) type c.
    Title
      wa_header-typ  = 'H'.
      wa_header-info = 'Transaction codes by User and Role Name ' .
      append wa_header to t_header.
      clear wa_header.
    Date
      wa_header-typ  = 'S'.
      wa_header-key = 'Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
                   sy-datum(4) INTO wa_header-info.   "todays date
      append wa_header to t_header.
      clear: wa_header.
    Total No. of Records Selected
      describe table it_disp lines ld_lines.
      ld_linesc = ld_lines.
      concatenate 'Total No. of Transaction Records Selected: ' ld_linesc
                        into t_line separated by space.
      wa_header-typ  = 'A'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
                it_list_commentary = t_header.
               i_logo             = 'Z_LOGO'.
    endform.
    *&      Form  BUILD_EVENTS
          Build events table
    form build_events.
      data: ls_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
           exporting
                i_list_type = 0
           importing
                et_events   = gt_events[].
      read table gt_events with key name =  slis_ev_end_of_page
                               into ls_event.
      if sy-subrc = 0.
        move 'END_OF_PAGE' to ls_event-form.
        append ls_event to gt_events.
      endif.
        read table gt_events with key name =  slis_ev_end_of_list
                               into ls_event.
      if sy-subrc = 0.
        move 'END_OF_LIST' to ls_event-form.
        append ls_event to gt_events.
      endif.
    endform.                    " BUILD_EVENTS
    *&      Form  BUILD_PRINT_PARAMS
          Setup print parameters
    form build_print_params.
      gd_prntparams-reserve_lines = '3'.   "Lines reserved for footer
      gd_prntparams-no_coverpage = 'X'.
    endform.                    " BUILD_PRINT_PARAMS
    *&      Form  END_OF_PAGE
    form END_OF_PAGE.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      write: sy-uline(50).
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    *&      Form  END_OF_LIST
    form END_OF_LIST.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      skip.
      write:/40 'Page:', sy-pagno .
    endform.

  • PDF won't print to Epson 545

    PDFs (Adobe Reader 10.1.4) will not print to my Epson 545 from my Mac (OS 10.6.8). Other apps print fine, only Adobe won't, and it provides a printer error "err number 13", which seems to mean there is no paper (there is paper tho' - lots). I've followed instructions from other threads for other Epson models but to no avail. Any one got a solution? Thanks.

    You're Welcome Gari!
    The driver on the disc may be outdated. Did you uninstall the older driver before trying to install the newer, downloaded one?
    If nothing else resolves the problem, and you need help doing that, I can post the instructions.
    "...stating that there is not enough RAM."
    OS X uses Dynamic Memory Allocation, so I am puzzled that you are getting that message.
    What is the exact error message?
    How much of the RAM is original, and how much is added?
    Is Classic running when you are trying to print?
    Do the printers function from any applications, other than Photoshop?
    You can also use Rember to test your RAM.
    "My ibook is more than happy to print to both printers..."
    Are you printing from Photoshop with the iBook?
    Have you deleted the printers from the Printer List in Printer Setup Utility, and then re-added them?
    Have you trashed the printer & Photoshop pref files from:
    HD > Users > Your Account > Library > Preferences: HERE?
    Sorry for all of the questions. I'm just trying to explore all of the possibilities, to get a better understanding of the situation.
    ali b

  • PDF won't print properly - some letters squeezed together

    Using a Mac and Reader 9 and two different laser printers (Canon and Brother). PDF won’t print text properly. Some letters are jammed / squeezed together. Last week I used Mac’s Preview Program / App to bypass the PDF print menu to get it to print the PDF properly but no luck today. How to fix?

    Printing as an image fixed the letter-jamming thing, thanks Michael. A new problem though.
    This is a 16 page booklet printed on 8.5x11. Each page is set at 5.5x8.5. I have made two PDF files:
    1) 16 individual pages 5.5x8.5 in portrait mode and
    2) 8 pages 8.5x11 in landscape mode with one page of the booklet on each half of the page (properly formatted to create a 16 page booklet). 
    The problem in using either one of these files are these:
    1) When I use the 16 individual page file and make a booklet under the print menu, it shrinks the combined pages to less than 8.5x11.
    2) When I try to print the 8 page file of an already formatted booklet, the image is the right size but the back of each sheet is printed upside-down.
    How do I fix either one of these problems, preferably both? All suggestions welcome.

  • Remote laptop won't print to new HP4622 wireless printer

    My new HP 4622 won't print from wife's laptop (Compaq Presario CQ-60-224NR w/ Windows Vista) in another part of the house on my home Centurylink DSL network with very good connectivity.  I have the printer installed at my desktop (Gateway Microsoft XP SP3) and it prints fine from the desktop.  Does the printer software also need to be installed on the laptop?  I sent a .jpg file to the printer from the laptop and it printed one line of unicode? code per page until I cancelled the job from the print queue. I have gone thru the installation guide a couple of times and nothing is fixed.  Test results say that everything passed and install is successful.  I downloaded and tried the print doctor wizard and it says no problems found.  I have McAfee total protection running, could there be a firewall problem?  I'm not sure about enabling ports or that sort of thing.  I dumped a perfectly good Lexmark X7170 all-in-one because it wasn't wireless and we couldn't get it configured to print peer-to-peer.  Now I have a new wireless printer and con't get to print remotely either.  Hope you can help.  Let me know if you need more info.  Thanks.
    This question was solved.
    View Solution.

    Hi Ken,
    I would recommend giving the printer a static IP address for the wireless connection (not USB):
    - Print a Network Config Page from the front of the printer. Note the printer's IP address.
    - Type that IP address into a browser to reveal the printer's internal settings.
    - Choose the Networking tab, then Wireless along the left side, then the IPv4 tab.
    - On this screen you want to set a Manual IP. You need to set an IP address outside the range that the router automatically sets (called the DHCP range). If you do not know the range, change the last set of numbers (those after the last '.') to 250
    - Use 255.255.255.0 for the subnet (unless you know it is different, if so, use that)
    - Enter your router's IP (on the Network Config Page) for the gateway.
    - Enter 8.8.8.8 for the first DNS and 8.8.4.4 for the second DNS. This is Google DNS. You can choose another external DNS if you wish.
    - Click 'Apply'.
    Now, shut down the router and printer, start the router, wait, then start the printer.
    After this you will have delete and re-add the printer on your computer. Do it this way:
    0. Go to Start > Control Panel > Devices & Printers and delete all instances of the printer.
    1. Make sure the printer is turned on and connected to your network. Verify that you can access the printer's internal web page by browsing to its IP address before continuing. Get its IP from a Network Test printed from the front panel of the printer.
    2. Click >> Start >> Control panel >> Devices & Printers.
    3. Click the Add a printer
    4. Select Local printer
    5. Select Create a new port and select Standard TCP/IP Port and click Next button.
    6. Under Device type, select TCP/IP Device. Under Hostname or IP address, enter the printer's IP address. Click Next.
    7. Select Hewlett-Packard from the list of manufacturers and select and select your printer model. Click Next.
    If your printer model was not listed, then select Have Disk, browse the HP CD that came with your printer and select the first file that starts with hp and ends with inf. Click Open then OK. Select your printer model. Click Next.
    8. If you are asked, use the currently installed driver.
    9. It will ask for the Printer name -- enter a new name or use the existing one. This will be the name of the printer that you select from other applications.
    10. You may be asked to share the printer. Choose NO.
    11. The Print Test Page box appears. Go ahead and print it.
    12. Click Finish.
    If you're still experiencing issues try changing the channel on your router to 11 and the encyption to WPA.
    Say "Thanks" by clicking the blue Kudos star in the post that helped you.

  • HP8600 won't print from new HP Envy PC Windows 8.1 PC - only local users

    I have an existing HP 8600 all-in-one printer this was never any problem on a homegroup network with my Windows 7 HP Pavillion destop PC and other portables.  I have just upgraded to a HP Envy Desktop PC, but it has come with Windows 8.1 (Ouch!).  I use this PC to run a home business and apart from having a connection to internet land I want nothing at all to do with have a Windows 'live' account on the new Envy.  The Admin account that I have set up is a local one.  I can't therefore download any application from the 'store' and neither do I want to.
    In the absence of anything from the 'store' and as it wouldn't set-up automatically I have downloaded the original  HP 8600 application and installed that.
    The various office applications 'see' the HP8600 as existing and ready to print to - identified as HP Officejust Pro 8600 (Network) in the list of printers.  However they won't print to it (the print jobs fail) and when I try Printer setup and software from the HP8600 software installed as noted above in the Ultities section it says that it is unable to retreive the computers network name when I enter the printer's IP address when required.
    So much for plug 'n' play.  Though the printer is connected the network wirelessly LOL.   Given that this is HP trying to talk to HP and failing I am baffled - please can someone help. 
    NB.  In camparison he old ancient HP1150 laser hard wired to the PC isn't batting an eyelid and is printing fine from first plug in with no changes!!  I need the HP8600 to function wirelessly though as everyone uses it.

    Hi there @HPJOC , welcome to the forums
    I read your posts about print jobs failing from your Windows 8.1 system, and wanted to reply to you with some of my suggestions.
    First run the Print and Scan Doctor. This diagnostic tool will check for any conflicts that could be causing the issue. The tool will show you a report at the end. If there was a problem that the tool could not fix, you will notice it in the results. I also would like you to check the Network Info you see in the image below, make sure VPN Connection says "No". Try printing again afterwards.
    Next, try a Clean Boot, restart the PC, and try a print from Notepad and elsewhere if you wish. Go back into the clean boot instructions and enable the start up programs afterwards. I am curious to know if there is something running on your Windows 8.1 system that is blocking the printer from communicating with the printer. This step will let us know.
    Let me know the results
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • I have OSX 10.6.8 and my new HP 6700 printer won't print until I "empty print file!" What does that command mean? How do I do it?

    I have OSX 10.6.8 and my new HP Officejet 6700 all-in-one printer won't print until I "empty print file!" What does "empty print file" mean. How do I do it?

    Go to System Preferences>Print & Fax>Open Print Queue, select(highlight) any jobs and delete them. Do this for all printers in the left side bar (select printer when you click  Open Print Queue)
    Hope this helps

  • I received a .pdf document as an attachment to an Entourage Email. It refuse to print on my HP4050N printer which is otherwise performing as advertised. Printing fron the desktop, Adobe 9.4.4 nor Preview won't work. I have a PowerPC G5, OS 10.4.11.

    I received a .pdf document as an attachment to an Entourage Email. It refuse to print on my HP4050N printer which is otherwise performing as advertised. Printing fron the desktop, Adobe 9.4.4 nor Preview won't work. I have a PowerPC G5, OS 10.4.11.

    I think the file has somehow been corrupted. Can you have the person that sent it to you send another copy?
     Cheers, Tom

  • Security set to allow high resolution printing but pdf won't print

    We create a large number of pdf files to send out to
    clients, etc. We have been using security on all pdf's being sent out, however, some clients are having issues printing these pdf files even though our security settings are set to allow high resolution printing. Any one have any ideas why? I cannot duplicate the issue for whatever reason, the files still print for me.

    I discover I am suddenly having a similar problem as well.
    I have recently migrated to a new Intel iMac/Leopard, I'm on a network and trying to print to a Tektronix/Xerox 7700 laser printer. I can print anything other kind of document on that printer as long as it is not a PDF.
    When I open the printer window it says the job has been stopped. I choose the job and tell it to "resume" at which point the printer pauses itself. Once it flashed a window that said Operation Not Possible - client-error-something-something and then closed before I could see what the last two words were.
    I am currently using Adobe Reader 6.0. I would love to be able to try to print out of 7.0 but there seem to be continual download problems in the form of constant connection failures. I also have Acrobat 6.0 STD - can't print out of either one.

  • Uninstalled epson printer from control panel...installed new brother printer....now i cannot print anything .pdf old or newly downloaded

    uninstalled epson printer from control panel...installed new brother printer....now i cannot print anything .pdf old or newly downloaded@

    For starters, what exactly do you mean by "cannot print"?
    Are you getting an error message? Are you trying to print from within Reader or are you opening these in the browser? What version of Reader. Even though it's a new printer, the drivers that came with it (or the ones that were already on your computer) may be old so, have you downloaded the most recent drivers from the Brother site?

  • InDesign doc exported to PDF won't print

    I'm experiencing issues with an exported PDF from InDesign. More specifically, when I export the InDesign doc to a PDF and try to print, I don't have any issues, nor does anyone else in my office, however some of the people that I'm sending the document to are experiencing trouble printing it. They get to 44% flattened and then the printing process slows down, and then once it reaches 50% they get a pop-up window saying that the document can't print and the whole thing stops. They can print the first page by just selecting that page, however the second page cannot be printed this way. I have re-exported the PDF several times and these folks having the issues have cleared their browser cache, re-downloaded the document, saved it to their desktop before opening, and tried renaming the document as well.
    What's going on here, and what can I do or tell them to do to fix this?
    Also, updating their Adobe Reader or Adobe Acrobat does not solve the problem.

    Hi, I was just wondering if you got the problem resolved. I'm asking because we are experiencing kind of the same issue in our office. Our Marketing Manager is using Adobe InDesign and exports her documents to PDF. These PDFs won't print in any of our printers in the office. It spools and then gets stuck and it actually makes our HP Coloured Laser Printer throw an error (error 79) and we'll have to restart the printer due to this error. We can print other documents and other PDFs in the printer so we know it's not a printer driver issue. In fact, we have isolated the problem to only PDFs exported from InDesign. Even if we create a blank document from InDesign and export it to PDF it still won't print. Really odd. We would appreciate if you could share your solution if you were able to fix the issue. Thanks!!

  • HP3015dn and Reader 10: PDF won't print

    I installed an HP3015dn.  It prints MSWord documents in simplex and automatically in duplex.  It will not print PDF files.
    System:  Windows 7, 32-bit.
    Driver: P3010 Series PCL 6.  The HP Universal PS driver also works for Word documents.
    I upgraded Adobe from Reader 9.4 (?) to Reader X (10.0.1).  No improvement.
    Fix attempted:  Adobe > File > Print > Advanced > Print as Image selected.  No improvement.
    Advice sincerely welcome.  I have a wonderful new duplex printer yet can't print simple PDF's.  Kinda miss my old HP1100.  :-o
    Thank you.

    Wow.  I didn't realize the Adobe failure to print was so widespread.  A few other posts made it clear that many others are having the same problem.
    I installed foxit reader but was still unable to print.
    This is a global problem which really calls for a fix.
    I'll keep searching for an answer, but I welcome any help you can give.
    Thanks.
    BTW - - my printer is USB-connected; no network.

  • Adobe PDF won't print non-working time colour in MS Project

    Adobe PDF won't print the colour chosen for non-working times in MS Project.  I have tried changing the colour, changing the style, moving non-working time in front of tasks and have fiddled with the printer properties, all to no avail.  It ignores whatever style I have for non-working time and makes a blank space, although it will take gridline changes . . . . please help!
    Shevaun

    Thank you for providing the suggestion and the Cleanup tools, however they did not help.
    I ran each version of the cleanup tool, and for each I had it clean up Reader and Acrobat (i.e. 4 separate cleanup operations).  I then rebooted the machine, and installed Reader 11.0.3.
    Still had the same behavior:  Reader will not print.  I tried printing to a second printer (that is attached via USB)...and it did not work either.  I also tried printing to a Cute PDF Writer print driver...and that did not work either.  In each case, no print data made it to the Windows print queue (as demonstrated by watching the queue while printing.)  No error was raised, but no print data was transmitted.
    I then uninstalled Reader 11.0.3, rebooted, and re-installed Reader 9:  printing works fine now.
    There is definitely something in Reader 10 and Reader 11 that breaks printing in some environments.    (As you alluded to...I have seen a number of postings online about printing problems in Reader.)
    More details about my environment:
    Windows 7 Professional N (Version 6.1, Build 7601: Service Pack 1)
    VMWare virtual machine
    Two virtual CPUs (each: Intel Core i7 920 @ 2.67 GHz, 2673 Mhz, 1 core, 1 Logicial Processor)
    Hardware Abstraction Layer:  6.1.7601.17514
    RAM:  3096 (allocated to virtual machine)
    Bridged networking
    VMware host:
    Windows 7 Ultimate, 64-bit 6.1.7601, Service Pack 1
    18 Gig RAM
    Intel Core i7 CPU 920 @2.67 GHz
    VMWare Workstation 9.0.2 build-1031769
    (but problem existed on older version of VMWare Workstation 7.x as well)

  • PDFs won't print (Lion and HP laserjet 1300)

    I just upgraded to Lion and pdfs won't print. It doesn't appear to be the printer driver, because the printer works with others apps. Any suggestions? It's an HP Laserjet 1300. Yes, it's old, but still works, well, sometimes. just not with pdfs.

    Hi Andreais,
    I found some useful tips on the HP forum as well. Maybe it is helpful in your case as well: http://h30434.www3.hp.com/t5/Mac-Printing-and-Scanning/HPDesignjet-130NR-no-long er-prints-PDF-properly/m-p/768507/highlight/true#M18877
    Cheers
    Mandy

  • My Macbook won't talk to our new wireless printer. What should I do?

    We have recently purchased a new wireless printer (Lexmark S600 Series) and my mum and dad's laptops (hp and acer) both talk to the printer. However my macbook and the imac we have upstairs do not talk to it as a printer. It will scan but it wont print...which is kind of the point of a printer So what I want to know is how to get the apple computers to print from our new printer.
    Please help!
    Thanks
    Hannah x

    Have you set up the printer on both Macs? Are the recognizing the printer as a scanner and not as a printer? Have you tried hooking the printer directly to a Mac to see if it will recognize it that way?
    Here's a website with PDFs that might help you get it set up with the Macs.
    http://www.lexmark.com/publications/pdfs/2007/s600/en.html
    I've had a few pain in the rear printers that wouldn't work unless I hooked up them up directly. After that they seemed to work ok through my network.

Maybe you are looking for