How do i get my printer 5532 to print mirror image

i NEED A MIRROR IMAGE PRINT OF A SCANNED PHOTO PRINTED ONTO PHOTO TRANSFER PAPER BY MY 5532 PRINTER 

Please read this post then provide some details.
http://h30434.www3.hp.com/t5/Other-printing-questions/Want-Good-Answers-Ask-Good-Questions/m-p/2094#...
Say "Thanks" by clicking the Kudos Star in the post that helped you.
Although I work for HP my posts and replies are my own
Please mark the post that solves your problem as "Accepted Solution"

Similar Messages

  • E mail bt print very small and i cannot change it. how can I get my e mails to print readable size

    HOW CAN I GET MY E MAILS TO PRINT TO READABLE SIZE. BT YAHOO WINDOWS 7 HOME PREMIUM HP DESKJET F2480
    NO FONT AVAILABLE TO CHANGE SIZE TO PRINT TO READABLE SIZE EG FONT SIZE 12 OR 14. DISPLAYS ON ABOUT SIZE 8
    ALSO HAVE TO CLICK FULL VIEW TO READ. THIS HAS SUDDENLY APPEARED, DID NOT HAVE FULL VIEW ETC BEFORE .

    Go to the following address: https://account.services.mozilla.com/
    If you DO NOT remember your password, press the "Forgot your password?" link and it will be sent to the e-mail address that you used for registration.
    Enter your e-mail address and your password. Follow any additional prompts. '''This should remove your account and all Sync data associated with your account from the servers.'''
    Then, set up a new account.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Hello - how do i get my mac pro to print in colour

    Hello - how do i get my mac pro to print in colour - i am using HP Envy 120 and can not print in colour. when testing the printer, the printer prints in colour, but trying to print from the mac book pro - it prints in black and white. i can't find an option that

    I know nothing about your printer. However, to use it properly you must Add the printer in Print & Scan preferences.
    See OS X Mavericks- Set up a printer. Also, consult the printer's user manual. With the proper setup the printer should print color or b/w automatically. If you have further problems you need to start with the printer HP's tech support.

  • How do I get my HP 2645 to print 4x6 cards. It gives me a mismatch paper size error

    How do I get my HP 2645 to print 4x6 cards?   It gives me a mismatch paper size error.

    Hi @aleek,
    Thank you for visiting the HP Support Forums! I see you would like to print 4x6 cards to your HP Deskjet Ink Advantage 2645, when you attempt to print the card you get a 'Paper Mismatch' error.
    I would like you to go ahead and take a look in your User Guide on page 10, here it shows how to load the media and change the printing preferences, although it shows Photos, you would use the same guidelines and steps for the Index cards, just be sure to change the media type to the correct card you are using.
    Once you have the media loaded and settings set if you are still getting the error, continue here: 'Paper Mismatch,' or 'Paper Size Mismatch' Error Message Displays When Printing
    I hope this helps, if you have anymore questions please let me know.
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • How do I get my iphone 3g to print from my hpc8100 printer

    How do I get my iphone 3g to print from my hp c8100  printer

    There is 3rd party software out there to install on your computer, to be able to print from a device using iOS 4.2.
    For example Printopia if you're using a Mac.
    You'll need at least an iPhone 3GS to be able to do so without other 3rd party software:
    AirPrint Basics

  • How do I get my Samsung tablet to print invoices and shipping information

    How do I get my Samsung tablet to print invoices and or shipping labels . Have HP loaded will not print.

    Hi,
    Depending on your printer actually, please use the Google Play/Store search for HP All-In-One Printer Remote or HP ePrint and install on your tablet.
    Hope this helps.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How can I get my HP 6515 to print photos

    How do I get my HP 6515 to print photos on standard paper from the standard bottom tray (8 1/2 x 10). I keep getting messages that my photo tray needs paper, I don't want to use that tray. Thanks.

    Hi there,
    Could you provide the community with a little more information to help narrow troubleshooting? What operating system and what program are we printing from?
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • How do i get hpeprint to work with print app from eurosmartz?

    How do i get hpeprint to work with print app from eurosmartz?

    If you have an idea for a new Print App that you would like to see, please submit your suggestion at the below link:
    https://h30495.www3.hp.com/idea/submit
    If I have SOLVED your issue, please feel free to provide KUDOS and make sure you mark this thread as SOLUTION PROVIDED!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • How do I get the IPad2 to find printer?

    How do I get the IPad2 to find printer? I've set the printer up with the Bonjour service.

    On Windows:
    The iPad uses Apple's printing protocol AirPrint. This is not a feature of Bonjour Print Services since it only lets it find printers shared by Macs and share it's own. There is however a quick and easy third party Windows application which can advertise a Windows printer using the AirPrint protocol.
    http://jaxov.com/2010/11/download-airprint-installer-for-windows-7-xp-vista/
    It does require the windows computer to be on and the since the printer won't be advertised if it isn't. If you have problems just google "AirPrint Windows" and you'll find that page and another tutorial.
    On Mac:
    Again there is another third party app you can use:
    http://fairerplatform.com/2011/04/airprint-activator-mac-os-lion-compatible/
    I've tried them both and they work a treat for me.
    Hope that's helped! I finally signed up because I actually knew the answer to this question! Yay!
    nebbern

  • How do I get System.out.format to print out doubles with the same precision

    Using the System.out.format, how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println.
    For example, take the following code:
    double d = 12.48564734342343;       
    System.out.format("d as format: %f\n", d);
    System.out.println("d as   sout: " + d);Running the code, I get:
    <font face="courier">
    d as format: 12.485647
    d as sout: 12.48564734342343
    </font>
    The precision of d has been lost.
    I could bump up the precision as follows:
    double d = 12.48564734342343;
    System.out.format("d as format: %.14f\n", d);
    System.out.println("d as   sout: " + d);That appears to work, I get:
    <font face="courier">
    d as format: 12.48564734342343
    d as sout: 12.48564734342343
    </font>
    However, that solution fails if d has a different precision, say 12.48. In that case I get:
    <font face="courier">
    d as format: 12.48000000000000
    d as sout: 12.48
    </font>
    So how do I get System.out.format to print out doubles with the same precision as System.out.println?
    Thanks..

    YoungWinston wrote:
    Schmoe wrote:
    Interesting, but this is not what I am looking for...Your original question was "how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println", and you've been told how to do that (although the pattern given by sabre may be a bit excessive - you should only need 15 '#'s).The initial phrase from my question was "Using the System.out.format, how do I..".
    It's worth remembering that, unlike the Format hierarchy, 'format()' is NOT native to Java. It's a convenience implementation of the 'printf()' and 'sprintf()' methods provided in C, and first appeared in Java 1.5. Those methods were designed to produced fixed-format output; 'println()' was not.Perhaps it is the case that this can't be done.
    Furthermore, Double.toString(), which is what is used by println() does not produce the same format in all cases; format("%.14f\n", d) does. TrySystem.out.println(1.8236473845783d);
    System.out.println(1823647384.5783d);and you'll see what I mean.I am fine with that. It still displays all the precision.
    I am simply looking for a way to quickly print out multiple variables on a sysout while debugging. I want it as syntactically sweet as possible. System.out.println can be a pain when outputting multiple variables like the following:
    "System.out.println("a: " + a + "; b:" + b + "; c: " + c);"
    For some reason, my fingers always typo the plus key.
    I was hoping that System.out.format would be easier,along the lines of:
    "System.out.format("a: %f, b: %f, c: %f\n", a, b, c);"
    From a syntactical sweetness point of view, it is easier. However, the %f on doubles truncates the precision. I figured there must be a way to get the full precision.
    DecimalFormat is syntactically sour for this purpose, as you need to instantiate the DecimalFormat.
    fwiw I have enjoyed reading the suggestions in this thread...

  • How do I get rid of shadowing when printing PDFs documents?

    How do I get rid of shadowing when printing PDFs documents?

    That may have been added by an extension or because you installed some (smiley) software on the computer.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    See also http://funmoods.com/terms

  • How do I get my HP Officejet K80 printer to work

    How do I get my HP Officejet K80 printer to work

    Check the HP site for a driver for your OS. http://h20000.www2.hp.com/bizsupport/TechSupport/DriverDownload.jsp?prodNameId=2 0497&lang=en&cc=us&prodTypeId=18972&prodSeriesId=30000&taskId=135
    I don't see any drivers there for Apple computers but I did not do an extensive search.
    If there are no drivers then you are out of luck, unless you can find a generic driver that will work.

  • How do I get my Cannon MX870 wifi printer recognize my IPad?

    How do I get my Cannon MX870 wifi printer recognize my IPad?

    Welcome to Apple Support Communities. We're all users here.
    First, Canon has a free app designed for photo printing, iEasy Photo Print (iEPP).
    If you also have a Mac running OS X 10.6 or newer, HandyPrint (formerly known as AirPrint Activator) from netputing.com might work for you. http://www.netputing.com/handyprint/
    The Mac needs to be on and running the app in order to print. I used it for a time with several non AirPrint printers, both wired and wireless, connected to my Mac.
    Because it is a Mac OS X app, rather than an iOS iPad/iPhone app, it DOES work with most iPad and iPhone apps seamlessly. (I won't say 'ALL' apps, because I only used it with a few dozen, and there are over 800,000 iOS apps out there.) You don't need to save your work and open another app in order to print.
    HandyPrint is donationware. Download it and give it a try for up to 14 days.
    If it works for you, great, you are asked to make a small donation.
    If not, it costs nothing to find out.
    Message was edited by: kostby

  • How do I get in contact with apple print services support Australia when my Print Order (book) keeps being cancelled (for no known reason)

    How do I get in contact with apple print services support Australia when my Print Order (book) keeps being cancelled (for no known reason)

    Portables that will not Power on.
    Try another power outlet.
    http://support.apple.com/kb/TS1365
    Go step by step.
    Note: Steps 5 and 6
    Best.

  • I have a HP 8500 wireless printer how do i get my i phone to print to it ?

    I have a HP office Jet 8500 how do i get my I phone to print to it?

    If you have a camera - you have the iPad 2.
    Lexmark makes a printing app, but as far as I can remember, you can only print photos with it - however, that may have changed by now.
    Look at apps like Print Central, Print Bureau and Print and Share for WiFi printing. You can also download apps like Printopia (Mac) and Print Magic (Windows) that let you use your computer as the print server for iPad printing.

  • How do i get PCL5 support for P1606dn printer windows 7 64-bit

    how do i get PCL5 support for P1606dn printer windows 7 64-bit

    The full solution, off the product page, is the recommended solution for this product. It works for most windows applications and installed by default.
    The PCL 5 UPD driver only works for the 1606 models and is recommeneded for general office printing and 3rd party or custom software programs.
    The XPS print driver (off the prodcut page) is recommened for capturing and printing exactly what is on the screen.
    When you install the UPD driver, I would recommend that your install it in the traditional mode instead of the dynamic mode. Just my preference. This way you don't have to wait for it to search for the printer everytime you want to print.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

Maybe you are looking for

  • BAPI_ACC_DOCUMENT_POST - Unable to create accounting document

    Hi All, I am trying to post a document using BAPI "BAPI_ACC_DOCUMENT_POST" and "BAPI_TRANSACTION_COMMIT " . On execution the following message is being displayed "                                                                    S RW  605 Document

  • Mircosoft teredo tunneling adapter

    how can i recover mircosoft teredo tunneling adapter

  • ORA-01791: not a SELECTed expression - Order by

    Hi, Below query is executing in one system (database version 10.2 64 bit) without any error. select distinct CONTRACTOR_ID,CONTRACTOR_NAME from CONTRACTOR order by REGISTRATION_NO But same query is not working in other system (database version 10.2 3

  • Without changing anything: Live view looks fine, but "preview in browser" does not

    I haven't made any changes to our website in months. When I opened my index page, I did not change anything yet, but did a "preview in browser" and my whole slideshow is missing! It's still fine on the live website, as I haven't uploaded anything. He

  • SMP 3.x MBO Took Kit support

    Dear Friends , I have some basic doubts in SMP 3.x .. please help me in better understanding of MBO approach in SMP3.x . Q1. I have a project (MBO based, offline support), developed in SUP2.2 SP05 , now we are planning to migrate/upgrade to SMP3.x ,