Cannot get pdf file to print actual size

I recently had to reinstall my printer and now when printing PDF files I cannot get the page to print in full size.  This is necessary because I am printing a pattern and the size has to be accurate.  I am not even given the option anymore to be able to do this.  I did have the option before the reinstall.  BTW the reinstall is because the computer crashed and I had to take back to factory settings.  I appreciate any help given.  Thanks.

pamw523
Welcome back to the HP Community Forum.
This may be helpful:
Manage Print Output with Print Preview
Assuming you have installed the Full Feature Software for the printer
and
Assuming that you have at least a recent version of Adobe Reader or Adobe software installed so you can download and open PDF files,
then
it may only be that the PDF print setup needs to be adjusted for the file prior to printing
See pages 5 and 6
You can also check
   Print PDFs
===========================================================
Click the Kudos Thumbs-Up to say Thank You!
And...Click Accept as Solution when my Answer provides a Fix or Workaround!
I am pleased to provide assistance on behalf of HP. I do not work for HP. 
Kind Regards,
Dragon-Fur

Similar Messages

  • Installed reader many times.  Still cannot get pdf files.  Cannot print statements or bills.  Help!

    Installed reader software numerous times.  Still cannot get pdf files to open so I can print bank statements and bills.  Help!

    When you say you cannot print, do you see any error? Please use Print button from Reader toolbar instead of Safari > Print.
    What is your Safari version? You can find it from  Safari > About Safari
    Can you please verify Safari > Help > Installed Plugins : Do you see Adobe Acrobat NPAPI Plug-in, Version 11.0.06?
    Thank You

  • Anyone know how to get pdf files to print on Mac

    anyone know how to get pdf files to print on  a Mac. When i bring pdf file up and press print a box comes up saying cannot print. When i press that one another comes up saying no pages selected. Everything up to date, rebooted, checked to make sure plugins are there and up to date.

    Might not be exactly what you want and I haven't had time to fully investigate this but take a look at http://www.hanynet.com/waterroof/

  • Cannot get PDF files to load on the iPad Mini from iTunes!

    Cannot get PDF to load on the iPad Mini through iTunes (latest version).   I could easily do this on the iPod Touch.   So what is missing?

    I solved my problem.  It turns out the default in iTunes is NO Sync for books or podcasts.  Once I turned that on I had success.   That wording should be included in the explanation on how to transfer PDF files to the iPad.

  • Cannot get text file to print in jtable. Using text file as a database

    Instead of doing JDBC i am using text file as database. I cant get data from text file to print into JTable when i click find button. Goal is to find a record and print that record only, but for now i am trying to print all the records. Once i get that i will change my code to search desired record and print it. when i click the find button nothing happens. Can you please take a look at my code, dbTest() method. thanks.
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.util.*;
    import java.io.*;
    public class GUIdirectory extends JFrame
    implements ActionListener {
    // Define the components and the layout
    JLabel inputLabel_lastname = new JLabel("Last Name");
    JTextField inputText_lastname = new JTextField("Last Name",15);
    JLabel inputLabel_firstname = new JLabel("First Name");
    JTextField inputText_firstname = new JTextField(" ",15);
    JLabel inputLabel_middleinitial = new JLabel("Middle Initial");
    JTextField inputText_middleinitial = new JTextField(" ",4);
    JButton inputButton = new JButton("Find");
    JPanel inputLayout = new JPanel(new FlowLayout(FlowLayout.CENTER,5,5));
    JButton jButton1 = new JButton();
    //create a new table and scrollpane
    JTable dataTable = new JTable();
    JScrollPane dataTableScrollPane = new JScrollPane();
    public static void main(String args[]) {
    GUIdirectory gui = new GUIdirectory("Telephone Directory");
    gui.show();
    gui.pack();
    //TokenTest tt = new TokenTest();
    //gui.dbTest();
    public GUIdirectory(String Title) {
    super(Title);
    // Add ourselves as a listener for the window closing
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent we) {
    exitWindow(1); }
    inputLabel_lastname.setLabelFor(inputText_lastname);
    inputText_lastname.setHorizontalAlignment(JTextField.RIGHT);
    inputText_lastname.addActionListener(this);
    inputLabel_firstname.setLabelFor(inputText_firstname);
    inputText_firstname.setHorizontalAlignment(JTextField.RIGHT);
    inputText_firstname.addActionListener(this);
    inputLabel_middleinitial.setLabelFor(inputText_middleinitial);
    inputText_middleinitial.setHorizontalAlignment(JTextField.RIGHT);
    inputText_middleinitial.addActionListener(this);
    inputButton.addActionListener(this);
    inputLayout.add(inputLabel_lastname);
    inputLayout.add(inputText_lastname);
    inputLayout.add(inputLabel_firstname);
    inputLayout.add(inputText_firstname);
    inputLayout.add(inputLabel_middleinitial);
    inputLayout.add(inputText_middleinitial);
    inputLayout.add(inputButton);
    getContentPane().setLayout(new BorderLayout(5,5));
    getContentPane().add("North",inputLayout);
    dataTableScrollPane.setViewportView(dataTable);
    getContentPane().add("Center",dataTableScrollPane);
    // A default method, primarily used for testing.
    public void actionPerformed(ActionEvent evt) {
    GUIdirectory gui = new GUIdirectory();
    gui.dbTest();
    void dbTest() {
    DataInputStream dis = null;
    String dbRecord = null;
    String hold;
    try {
    File f = new File("customer.txt");
    FileInputStream fis = new FileInputStream(f);
    BufferedInputStream bis = new BufferedInputStream(fis);
    dis = new DataInputStream(bis);
    Vector dataVector = new Vector();
    Vector headVector = new Vector(2);
    Vector row = new Vector();
    // read the record of the text database
    while ( (dbRecord = dis.readLine()) != null) {
    StringTokenizer st = new StringTokenizer(dbRecord, ",");
    while (st.hasMoreTokens()) {
    row.addElement(st.nextToken());
    System.out.println("Inside nested loop: " + row);
    System.out.println("inside loop: " + row);
    dataVector.addElement(row);
    System.out.println("outside loop: " + row);
    headVector.addElement("Title");
    headVector.addElement("Type");
    dataTable = new JTable(dataVector, headVector);
    dataTableScrollPane.setViewportView(dataTable);
    } catch (IOException e) {
    // catch io errors from FileInputStream or readLine()
    System.out.println("Uh oh, got an IOException error!" + e.getMessage());
    } finally {
    // if the file opened okay, make sure we close it
    if (dis != null) {
    try {
    dis.close();
    } catch (IOException ioe) {
    } // end if
    } // end finally
    } // end dbTest
    // Exits the program upon closing the window
    public void exitWindow(int i) {
    System.exit(i);
    public GUIdirectory() {
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    jButton1.setText("jButton1");
    this.getContentPane().add(jButton1, BorderLayout.CENTER);

    Nothing happens because in the actionPerformed() method you are creating a new version of GUIdirectory. You just want to execute the dbTest() method of the current instance of GUIdirectory.
    The code should be:
    public void actionPerformed(ActionEvent evt)
    //GUIdirectory gui = new GUIdirectory();
    //gui.dbTest();
    dbTest();

  • Since upgrading to Firefox 4 I cannot get PDF files to open in the browser using Acrobat 9.0

    I have my Application options set to "Use Adobe Acrobat 9.0 (default)," yet clicking on a pdf link causes the file to be downloaded and opened outside of the browser.
    I've checked for missing plug-ins, but that only leads me to a download page for Adobe Reader 10, which should not be necessary since I already have the full version of Acrobat.

    In my case it's with .puz files, which are crossword puzzle files used by sites like the New York Times and read by the application AcrossLite. I went into preferences and tried to change the action for the file type from "Save File" to AcrossLite but it would not take. Set it instead to "Always Ask" and then in the dialogue box selected AcrossLite and "always do this" and it gave an unknown error.
    This is FF 4 on a Mac.

  • File is huge when combined or changed to PDF, how do I get the file to a normal size to print?

    Files are to large to print once they are PDF, how do I get them to a normal 8x11 size to print?

    So why is it when I send these PDF files to clients they are to large for clients to print?
    If I send a combined PDF file that is 3817KB, which a client has said is to large for them to print.
    I send it to our office manager, she will print it, scan it back to me as a PDF, it will come
    back as 375KB, the client can then print the file.
    My question is, was/is there something I need to change in the process of scanning, combining files
    to PDF that would create a smaller size file when done?
    Sorry for all the confusion
    Marilyn Bartunek
    Juffer Real Estate Inc.
    605-360-7703
    [email protected]
    Date: Tue, 1 Apr 2014 10:13:35 -0700
    From: [email protected]
    To: [email protected]
    Subject: file is huge when combined or changed to PDF, how do I get the file to a normal size to print?
        Re: file is huge when combined or changed to PDF, how do I get the file to a normal size to print?
        created by Test Screen Name in Creating, Editing & Exporting PDFs - View the full discussion
    Sorry, I'm lost.First I thought this was about page size. But you say it isn't. You say it's about file size.  You've combined files of 494 + 441 = 935 KB, and you get 944 KB. This seems fine and you say it is fine. So what is the problem? Are you now on still a third meaning of huge, about size on screen?
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6261540#6261540
         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: http://forums.adobe.com/message/6261540#6261540
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6261540#6261540. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Creating, Editing & Exporting PDFs at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Cannot print actual size when choosing several pages per paper

    I'm using Adobe Reader XI and trying to print a pdf (exported from InDesign)´where each page is in A5 format. I want to print two A5 pages for each A4 paper. However, when I click the button Several (or similar, I'm using Swedish version) there is a fixed 25 mm margin around each A5 page so that the pages are much reduced on the printout. I'd like to print actual size, and I think this was possible in a previous version. If I print one A5 per A4 paper I can print the actual size. I tried the button Print Format (equiv.) but the margins are fixed and cannot be changed. Awkward. Thanks for help or explanation why this is so.

    I have a little more information. I turned on "single hairline" border and as you can see, it's converting my square pages into "US Letter" pages BEFORE applying them two-to-a-page. So it's using my selection of "Paper Size" as both the source and destination paper size, rather than just the destination size, because my source is obviously 12x12 square (confirmed by looking at page properties in preview). Apple, please fix this

  • I am trying to print a PDF file to a legal size paper and I would like for it to fill up the page. How do I do this? I went into the settings and changed it from letter to legal, but it's still printing out the same size. Can someone help me, please?

    I am trying to print a PDF file to a legal size paper and I would like for it to fill up the page. How do I do this? I went into the settings and changed it from letter to legal, but it's still printing out the same size. Can someone help me, please?

    Are you trying to Print to PDF or are you trying to Print a PDF file to a physical printer?

  • When I try to click on print in Mapquest and PDF documents I cannot get the popup to print the page

    When I try to click on print in Mapquest and PDF documents I cannot get the popup to print the page when I click on "print."
    I have to type the URL in Google Chrome browser and the print button works fine.
    How can I get the print popup to work in Firefox 6.0?

    My sister's 5s is having the same issue since yesterday.
    Neither resetting via holding home+power buttons helped, nor the "reset all settings" in the settings. The only option left is erasing the iPhone and setting it up as a new phone ( or restoring from a backup?)

  • How do I get my mac to allow a PDF file to print on my HP?

    When I tried to print a PDF file my Mac told me I had to go to the App store to get the file to print, this has not happened before and most of my documents have printed with no problem. How do I get my Mac to allow me to print a PDF file?

    Open Finder Preferences and choose to show external drives on the desktop:
    And/or in the sidebar:

  • How do I get iTunes 10 to play movie files as their actual size?

    In iTunes (10), I have several iTunes purchases/rentals as well as movie files I've created on my own and converted into .mp4 format. My problem is that I really would like to play these files as their actual size, but can't seem to get iTunes to cooperate. I'm sure there's an easy way to do this and I've tried the quick-keyboard command (command-1), but without luck for both the iTunes official files (m4v) and the .mp4s.  Any help is very appreciated.

    Chris CA wrote:
    Double click to play it then right click > Open in separate window.
    Or you can set iTunes to always open movies in their own window.
    iTunes prefs > Playback.
    iTunes 10.5 (on 10.6.8) doesn't have a "playback in separate window" option.
    Fortunately, the effectively hidden right-click "Playback Video in Separate Window" option is still available, and this choice holds for future videos.
    I can keep my iTunes window on my left monitor and playback videos on my larger, widescreen middle monitor.

  • ? cannot open pdf files. get 'because it is not supported on this system'?

    Cannot open pdf files. get a pop up that says 'You cannont open the application "" because it is not supported on this system.

    Hi Sharon,
    Highlight a PDF in the Finder, do a Get Info on it, (CMD+i), what does it say for Open with? Or choose Open with... Preview.
    Another test is to open Preview in Applications, then drag a PDF to Preview's icon in the Dock.  What happens?

  • PDF file VIEW & PRINT differences: Preview 4.2 & Acrobat 9.3

    My original two-page OpenOffice document (.odt file extension) exported to PDF file format (.pdf file extension). I used Acrobat 9.3 to force the document to display both pages as continuous facing - so far, so good. I've found two issues - neither of which appear to be related to OpenOffice. The font used is Arial 10pt and larger (for headings and such).
    1) PRINTING: When printing the PDF file from Preview the document size and layout is printed identically when compared to the original ODT file - GOOD! BUT when printing the PDF file from Acrobat 9.3 the margin padding is increased by 0.25 inches on all four sides. YIKES! I was able to fix this problem by getting (i.e., remove the additional padding) by resetting Acrobat's "Page Scaling" option from the default value of "Fit to Printable Area" to "None".
    The good news is that saving the file within Acrobat 9.3 with the updated "Page Scaling: None" setting seems to persist - but can I be sure the proper print dimensions are preserved when this PDF file is printed from a Windows platform? Does anyone know why Acrobat increases the margin padding like this?
    2) VIEW: I cannot get Preview.app to display the PDF file with continuous facing - only one page at a time is displayed even though View > PDF Display > Two Pages is selected!?! Acrobat 9.3 displays the document correctly with both pages. Any ideas why this may be and how to fix Preview to display both pages upon opening the document?
    A minor sub-issue here is that Acrobat 9.3 on Mac OS X seems to use a display font that isn't truly Arial - the display of many characters' line weights are uneven and the document has decidedly Windows-ish look to it. Preview does a much better in displaying the document in true Arial. Fortunately, the true "Arial-ness" of the document in print format is not noticeable once the padding problem was resolved (see above).
    I'm mostly concerned about the PRINT variance - I intend to publish/distribute this PDF document (a technical white paper) and many more like it to 1000's of clients but I have no control over which "VIEW" tool they use. Net/net: This unwanted 0.25 inch additional padding really does take away from the visual esthetics of the document - I've shown this variance to several people and we are in 100% agreement on this.
    TIA ---

    Glad it helped; (for any nit-pickers out there I should have typed 8.2.2, sorry).
    There are others with similar issues:-
    http://www.acrobatusers.com/forums/aucbb/viewtopic.php?pid=61489

  • PDF not showing at actual size

    I have a website mockup design (72dpi) created in Fireworks. I often provid these for client review as PDFs. However, recently, the PDFs are not displaying properly.
    I've tried various ways of creating the PDFs: place Fireworks png in InDesign, open PNG in Photoshop, print to PDF from FW...
    When I open these PDFs at 100% they are oversized. Why aren't they displaying at proper size? It is a problem for a lot of biz Acrobat users as they don't know the proper size to display the mockup to see them properly.
    Seems like such a simple thing, but I cannot determine the resolution. I simply want the PDF to display at actual size for screen viewing, 100%. Normally, it's easier to create PDF then to publish mockup designs to the web wrapped in web pages.
    Any enlightenment is appreciated.

    squidz wrote:
    Interesting...I don't recall seeing that pref in the past. I'm using v8.1.6 and it is there. "System setting" is 99 px/inch. And here all these years I thought my Macs were 72 px/inch but Acrobat believes it to be 99. Which also explains why at 75% they looked closer to actual size.
    I changed that setting to 72 and it display perfectly. But, as you said, that setting on someone else's system is beyond my control.
    Seems pretty screwy that Acrobat itself drives how a user sees a document rather then the document delivering it's actual dims/resolution. I'm simply surprised that I've not known this all this time.
    It depends upon the resolution of the monitor used and the Graphics Card used in your system.
    Usually it would be 72. but for example above in the Screen shot I showed my PowerBook 17" does infact use 98DPI.
    I don't know whether you noticed the drop down box for Zoom level All I have shown is fit to Page but there is also fit to width  along with percentages going all the way up to 200%.
    If you want you can set back to 99 and change the zoom level you normally see when openning a file.

Maybe you are looking for

  • SQL Insert Error Error in allocating a connection. Cause: No PasswordCreden

    Friends, While testing my connection in the Sun java Application Server , I get the following error . "SQL Insert Error Error in allocating a connection. Cause: No PasswordCredential found " Can somebody please guide ? regards Dhiraj

  • The English subtitle of "The Avengers" (not CC) is not working only on Mac.

    I might be just picky posting this issue, but it really intrigued(in bad way) me about why only iTunes on Mac OS X can't show the english subtitle, (not close caption, CC works fine) I have Apple TV (3rd gen), Windows 7 PC, and Mac mini (2012). The m

  • Save your time and money

    People save your time and money and run for the hills!!! Verizon wireless is a joke and worse than any other wireless company I have ever dealt with!! They slow your data down after the 1st GB and then charge you outrageously if you run over, and god

  • Phone calls not showing on MyBT account

    Joined BT just over 2 weeks ago and the phone calls made are not showing on MyBT account under "View your recent usage". I am on Infinity 2 which comes with free Evening and Weekend calls and would like to be able to keep a check on what calls are ma

  • GTS Training/Certification

    Hi.. gurus.. I want to be trained/ceritied on sap gts please help regards rakhi