Print only primary colors

Hello there, 
I just bought 2 new cartridges for my printer HP Photosmart c4600 All-in-one series and tried to print docs in color.  
- 1 HP 300 (CC640EE) Remanufactures High Capacity Black Ink cartridge
- 1 HP 300 (CC643EE) Remanufactures High Capacity Colour Ink cartridge. 
However, it only print in blue, pink and yellow (no orange or other or so). Could you let me know how I can solve this? 
We use it for our social entreprise and have many posters and flyers to print on daily basis and the quality is very bad. 
Many thanks for your help, 
Caroline

Hi @Caroline1985,
Welcome to the HP Forums! 
I understand that your HP Photosmart c4600 is only printing primary colors. I am happy to help!
Please see the following guides:
Can I Refill The Ink In My HP Ink Cartridge?
Fixing Print Quality Problems for the HP Photosmart C4600 and C4700 All-in-One Printer Series.
I would also suggest using HP Genuine ink cartridges, not remanufactured cartridges, as it is a possibility the issue could lie with those cartridges.
Hope this information helps, and have a good day!
RnRMusicMan
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 say “Thanks” for helping!

Similar Messages

  • Printing only certain colors to Postscript [JS, CS3]

    Is there a way, via a script, to only output certain ink colors when printing to a Postscript file? When doing it manually you can choose which colors to output, but I haven't been able to find any way to do that through a script. Any ideas?

    Well I believe I have this working now. Here's the code:
    // This script works by doing a few things. First, it will delete any ink that isn't actually on the document and in use.
    // Then it will prompt the user to choose what inks they want to output. Once the script has those ink choices,
    // it will decide, via four if statements, what colors to output. There are four if statements to handle all the combinations
    // of cyan and black outputs. The other colors checked (red, blue, etc.) will be printed from within all the ifs.
    // Once it knows what colors to output it creates a preset based on those criteria, and then uses that preset to
    // output the file. After the file is printed to Postscript it deletes the preset and saves and closes the file.
    // If the preset doesn't get deleted for some reason, it will simply be overwritten the next time the script runs.
    // I figured it would be cleaner if it would delete it each time.
    if (app.documents.length == 0)
    alert("No document is open.")
    exit();
    var myDocument = app.activeDocument;
    v =myDocument.unusedSwatches.length-1;
    while (v >= 0)
      try {
       myDocument.unusedSwatches[v].remove();
      } catch (_) { }
      v--;
    inklist = myDocument.inks.everyItem().name;
    checklist = [];
    //creates dialog box
    var inkDialog = app.dialogs.add({name:"F4 2up LH", canCancel:true});
    with (inkDialog.dialogColumns.add())
            with(dialogRows.add())
                var choiceText = staticTexts.add({staticLabel:"Choose ink(s) to output:"});   
            with(dialogRows.add())
                with(dialogColumns.add())
                    for (i=0; i<inklist.length; i++)
                    with(dialogRows.add())
                    //.push adds items to an array
                    checklist.push(checkboxControls.add({staticLabel:inklist[i], checkedState:false}));
    //Display the dialog box
    var myDialog = inkDialog.show();
    if(myDialog == true)
        for (m=0; m<checklist.length; m++)
            if(checklist[m].checkedState == true)
                myDocument.inks[m].printInk = true;
            else
                myDocument.inks[m].printInk = false;
    else
        inkDialog.destroy();
        exit();
    //check to see if cyan is checked and black is not
    if((checklist[0].checkedState == true) && (checklist[3].checkedState == false))
        var myPreset = app.printerPresets.item("tempPreset");
    try
        myPreset.name;
    catch(myError)
        myPreset = app.printerPresets.add({name:"tempPreset"});
    with(app.activeDocument.printPreferences)
        pageRange = PageRange.allPages;
        myPreset.useDocumentBleedToPrint = useDocumentBleedToPrint;
        myPreset.printer = Printer.POSTSCRIPT_FILE;
        myPreset.ppd = "PlateStream";
        myPreset.colorOutput = ColorOutputModes.SEPARATIONS;   
        myPreset.paperSize = PaperSizes.custom;   
        myPreset.pagePosition = PagePositions.UPPER_LEFT;
        //myPreset.screening = ("110 lpi / 1200 dpi");
        myPreset.cyanFrequency = 110;   
        myPreset.cyanAngle = 15;
        myPreset.printCyan = true;
        myPreset.magentaFrequency = 70;
        myPreset.magentaAngle = 15;   
        myPreset.printMagenta = false;
        myPreset.yellowFrequency = 70;   
        myPreset.yellowAngle = 0;
        myPreset.printYellow = false;
        myPreset.blackFrequency = 70;   
        myPreset.blackAngle = 45;
        myPreset.printBlack = false;
        mydpp = myDocument.printPreferences;
        mydpp.activePrinterPreset = "tempPreset";
        f = new File("//172.25.77.225/spool/"+ myDocument.name +".ps");
        mydpp.printFile = f;
        myDocument.print(false, undefined);
        myPreset.remove();
        myDocument.save();
        myDocument.close();
    //check to see if cyan is unchecked, but black is checked
    if((checklist[0].checkedState == false) && (checklist[3].checkedState == true))
        var myPreset = app.printerPresets.item("tempPreset");
    try
        myPreset.name;
    catch(myError)
        myPreset = app.printerPresets.add({name:"tempPreset"});
    with(app.activeDocument.printPreferences)
        pageRange = PageRange.allPages;
        myPreset.useDocumentBleedToPrint = useDocumentBleedToPrint;
        myPreset.printer = Printer.POSTSCRIPT_FILE;
        myPreset.ppd = "PlateStream";
        myPreset.colorOutput = ColorOutputModes.SEPARATIONS;
        myPreset.paperSize = PaperSizes.custom;
        myPreset.pagePosition = PagePositions.UPPER_LEFT;
        //myPreset.screening = ("110 lpi / 1200 dpi");
        myPreset.cyanFrequency = 110;
        myPreset.cyanAngle = 15;
        myPreset.printCyan = false;
        myPreset.magentaFrequency = 70;
        myPreset.magentaAngle = 15;
        myPreset.printMagenta = false;
        myPreset.yellowFrequency = 70;   
        myPreset.yellowAngle = 0;
        myPreset.printYellow = false;
        myPreset.blackFrequency = 70;   
        myPreset.blackAngle = 45;
        myPreset.printBlack = true;
        mydpp = myDocument.printPreferences;
        mydpp.activePrinterPreset = "tempPreset";
        f = new File("//172.25.77.225/spool/"+ myDocument.name +".ps");
        mydpp.printFile = f;
        myDocument.print(false, undefined);
        myPreset.remove();
        myDocument.save();
        myDocument.close();
    //check to see if black AND cyan are checked
    if((checklist[3].checkedState == true) && (checklist[0].checkedState == true))
        var myPreset = app.printerPresets.item("tempPreset");
    try
        myPreset.name;
    catch(myError)
        myPreset = app.printerPresets.add({name:"tempPreset"});
    with(app.activeDocument.printPreferences)
        pageRange = PageRange.allPages;
        myPreset.useDocumentBleedToPrint = useDocumentBleedToPrint;
        myPreset.printer = Printer.POSTSCRIPT_FILE;
        myPreset.ppd = "PlateStream";
        myPreset.colorOutput = ColorOutputModes.SEPARATIONS;
        myPreset.paperSize = PaperSizes.custom;   
        myPreset.pagePosition = PagePositions.UPPER_LEFT;
        //myPreset.screening = ("110 lpi / 1200 dpi");
        myPreset.cyanFrequency = 110;
        myPreset.cyanAngle = 15;
        myPreset.printCyan = true;
        myPreset.magentaFrequency = 70;
        myPreset.magentaAngle = 15;   
        myPreset.printMagenta = false;
        myPreset.yellowFrequency = 70;   
        myPreset.yellowAngle = 0;
        myPreset.printYellow = false;
        myPreset.blackFrequency = 70;   
        myPreset.blackAngle = 45;
        myPreset.printBlack = true;
        mydpp = myDocument.printPreferences;
        mydpp.activePrinterPreset = "tempPreset";
        f = new File("//172.25.77.225/spool/"+ myDocument.name +".ps");
        mydpp.printFile = f;
        myDocument.print(false, undefined);
        myPreset.remove();
        myDocument.save();
        myDocument.close();
    //otherwise, neither cyan nor black are checked
    else
        if((checklist[3].checkedState == false) && (checklist[0].checkedState == false))
            var myPreset = app.printerPresets.item("tempPreset");
    try
        myPreset.name;
    catch(myError)
        myPreset = app.printerPresets.add({name:"tempPreset"});
    with(app.activeDocument.printPreferences)
        pageRange = PageRange.allPages;
        myPreset.useDocumentBleedToPrint = useDocumentBleedToPrint;
        myPreset.printer = Printer.POSTSCRIPT_FILE;
        myPreset.ppd = "PlateStream";
        myPreset.colorOutput = ColorOutputModes.SEPARATIONS;
        myPreset.paperSize = PaperSizes.custom;   
        myPreset.pagePosition = PagePositions.UPPER_LEFT;
        //myPreset.screening = ("110 lpi / 1200 dpi");
        myPreset.cyanFrequency = 110;
        myPreset.cyanAngle = 15;   
        myPreset.printCyan = false;
        myPreset.magentaFrequency = 70;
        myPreset.magentaAngle = 15;
        myPreset.printMagenta = false;
        myPreset.yellowFrequency = 70;   
        myPreset.yellowAngle = 0;
        myPreset.printYellow = false;
        myPreset.blackFrequency = 70;   
        myPreset.blackAngle = 45;
        myPreset.printBlack = false;
        mydpp = myDocument.printPreferences;
        mydpp.activePrinterPreset = "tempPreset";
        f = new File("//172.25.77.225/spool/"+ myDocument.name +".ps");
        mydpp.printFile = f;
        myDocument.print(false, undefined);
        myPreset.remove();
        myDocument.save();
        myDocument.close();
    inkDialog.destroy();
    So far it's been working quite nicely. Thanks for all the help everyone. If there is anything that looks like it should be changed please let me know. It's been a while since I did anything like this.
    Nate

  • I have HP Deskjet 3510 connected wireless - problem is that it wants to print only black and white - is there a color button I am missing?  The print quality report is fine in color etc.

    I have a HP Deskjet 3510 and it wants to print only in black and white. 
    The Print Quality Report is fine and in color.
    Is there a color button I am missing?

    In the Print & Scan system preferences, does it indicate it is using a generic printer driver or a Gutenprint driver?
    Also, if you click on Options & Supplies, you might want to check and see if has to be enabled. That kind of sounds odd though.
    Another thing is it might not be showing. If the bottom of the print dialog has a button that says "Show Details," click it. Then, you can change settings in the popup menu.

  • Why does 3522 prints only in black and white not in color

    my 3522 hp printer will print only in black not in color.i have new color carttridges #564 and the black is not low.any help would be appreciated.

    The troubleshooting steps in the document here may help resolve color not printing on your Deskjet 3522.   If this does not resolve the issues please provide some further details - what is the operating system on your computer?  Does the printer make color copies properly?

  • Reader X prints only color

    Hi
    I have windows 7 and reader x. I print everything else in color, but this PDF file it prints only in black? Specific file: producer "acrobat distiller" 9.4.6 (windows), version: 1.5 (acrobat 6.x). When I click print, then properties,under quick print it shows "color mode" that can be changed to black. I check under basic it shows color in there as well. But it still prints only in black?
    Could someone help please?
    Thanks

    12. Feb 1, 2012 10:18 PM (in response to tmariehart)
      Re: PDF colours not print out in black in Reader 9.3.1     
    This is a screen capture of the print preview of a document I was printing with Adobe Reader X on my HP 6500A-e printer. These black streaks are at top and about 2/3 way down on this example. It varies. The blotches, lines, whatever you want to call them, occurred at random on various pages of the document, using various printer preferences (varied quality, black/color, double-sided vs. single-sided, color vs. black ink, etc.). This happened with several PDF documents. It just started happening today, Feb. 1st, 2012. The lines don't show up until you print or do a print preview. They aren't there when you view the page in the Reader. What is going on? Using Adobe Reader X, version 10.1.2.

  • Color Laserjet 2605dn prints only grayscale in Windows 7

    Over the weekend I upgraded 2 PCs to Win7.  I downloaded the most recent Universal Printer Driver from the HP website (dated Feb 18, 2011).  The problem?  From some applications, the printer now prints only in grayscale.  For instance, all output from CorelDraw X5 is grayscale.  In MS Word 2010, most output is grayscale, but curiously "Word Art" prints in color even when all else prints in grayscale.  Opening a bitmap (photo, for instance) in MS Picture Editor, it will print in full color, but the same photo opened in CorelDraw X5 or imported into MS Word will print only in grayscale.
    I have uninstalled the printer driver package (using Microsoft Management Console) and reinstalled it, with the same results.
    Help!

    I do not know of any availability of a previous driver for Windows 7 32bit for this printer. Did you try both drivers from this page:
    Drivers for 2605dn
    The drivers listed for PCL6 and Postscript, are different in size, maybe one will fix the problem. Make sure to uninstall one before trying the other.
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • Color toner consumption on M476dw when printing only black pages?

    I purchased a M476dw about a month ago.  After printing the color demo page a few times and one or two color prints, and then until I changed the default settings there were a few pages printed with "accent color". Other than that, I've only been printing black pages since then.
    The supplies report says I have 70% left on my black cartridge (pages printed 310 estimated remaining 750), and 90% remaining on all three color cartridges ( (pages printed 33 estimated remaining > 1000)
    I realize these are just estimates, but I am surprised that 33 pages of printing almost all of which were just accent color has resulted in 10% of the color cartridges consumed.
    I have printer plugged directly into the wall and leave it on all of the time, so no surplus cleaning cycles are being generated, and my default printing mode is:  black & white / Print in grey scale.
    I realize the supplied cartridges are "starter" cartridges but still are there any other factors under MY control on color toner consumption?
    Thanks!
    Jim

    I have the same problem that you. I have a spool order in SAP (Purchase Order) and when the user try to print it a column appears in black boxes.
    The printer model is Esker Fax Server and the Device Type is SWIN.
    The Purchase Order layout have been created with a smartform, I have review the shading for this field and it's correct (0%). And when I preview the PO in me23n the column is correct, without black boxes.

  • My  Macbook Pro will not print color to my HP B209 Printer, only black and white...

    My Macbook Pro Yosemite will not print color to my HP B202 printer, only black and white.  Help!

    Hi ..
    Try a reset > Mac OS X: How to reset the printing system

  • How do you print in black only (not color) on Canon MG3520 printer?

    How do you print in black only (not color as I want to conserve color)  on Pixma MG3520 printer.

    No, sorry.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • HP OfficeJet Pro 8500A Plus - By passing expired Color Cartridges to print only in Black printing.

    Hi,
    Problem:
    fIt seems that this model of printer has a built in protocol which makes the printer inoperable if any of the colour cartridges are past their expiry date. Attempts to print solely in black are also being prevented because of this.
    Does anybody know how permit black printing only without the need to replace colour cartridges rarely used.
    Apple Mac PCs and laptops are connected to the printer wirelessly.
    I look forward to any info which rids me of this frustrating problem.

    Hello popkc, and welcome to the HP Forums.
    I see you are looking into ink options.  Due to the design of the printer, it does require functional ink as to not cause damage to the print system.  There is no way to override this.
    Please let me know if you have any questions.  Thanks for posting on the HP Forums.
    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" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • HP Officejet Pro 8500 Premier prints only in black/MAC USER & won't align?

    PROBLEM # 1) I've replaced all my ink cartridges, but can't find out why my printer is now only printing in black? I'm a MAC user, so I want to print in color, and am trying to find instructions for a MAC on how to get back to printing in color?
    ACTION TAKEN #1
    UPDATE: I've done a three level cleaning of the printer heads, which DOES print in color and each color block now looks great.  The printer heads were not printing any color blocks, but the pink color block,  until the first third level cleaning. I then cleaned the printer heads a second time all the way through the third level.
    RESULT: However when I print from any document/web page my printer only still prints in black & white after these two printer adjustments double three stage printer cartridge claening?
     ACTION TAKEN #2
    I found this very detailed report and video on cleaning printer heads, alignment issues, and calibrate line feeds;
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01624398&lc=en&product=3964986&tmp...
    The Print Quality Diagnostics Page looks perfect (including the alignment section)  in all 3 test patterns, and again prints in color. 
    RESULT: However, my printer still will not print in color after trying all these steps?
    IPROBLEM #2)I  've also tried a align printer which also prints in color,  but states, "alignment failed see documentation manual"? To make the situation more complicated the alignment page looks perfect  and prints in color before the error message displays. 
    After puling the power cord  twice while ON  and wiating 20 seconds, as discussed in the above link. my printer "won't remove the, "align  error message see diagnostics manual".
    RESULT: Printer "won't remove the, "align  error message see diagnostics manual", even though the Printer Diagnostic Pages looks great, and the alignment page as well.
    I'm operating a lastest version Macbook Air laptop OS X 10.9.4. I have not upgraded to a new operating system since this problem started a week ago, and Ive owned this HP Printer for 2 years. 
    UPDATE: ISSUE SOLVED. Well you can imagine when I say that I spent about 2 hours on this yesterday that yea he's right. This took a long time to research and try all these solutions. I told my wife about the issue and had her try:
    ACTION TAKEN #3: Print a page from a second computer. Windows laptop printed a colored page from a web site.  
    SOLUTION: (Printing only in Black Color): Wife literally solved the problem in 3 minutes! 
    Look below at the presets drop-down arrow tab, which is right below the printer name: You will see PLAIN PAPER, FAST DRAFT, BLACK AN(D WHITE). I'm not sure how I checked this, but this is how you can print only in black ink. NOTE: I looked at dozens of answers across the web, and didn't find this info anywhere else!
    This screen shot show you what the setting should be if you want to print in fast draft mode to use the least amount of color ink. 

    Hi monkplayer,
    It looks like your problem is solved? There wasn't a problem with the printer itself, just the printer settings on your Mac?
    This is good information though. We don't always have detailed solutions for customers that are using Safari, since it is hard to write instructions for the general public with specific steps for each operating system.
    Best of luck,
    Mary
    {I work on HP's behalf}

  • Printing only in B&W

    Hello,
    When printing remotely through my Apple Express (version 6.3) it no longer conveys the color signal to my HP printer, only the black and white. It doesn't seem to be a printer or computer issue, as they work fine when connected directly through the USB.
    Thanks in advance for any help.
    Josh - Brooklyn, NY

    An issue with HP not Apple. Thanks all

  • Printing only odd/even numbered pages does not work

    I've got following problem: Printing only odd/even numbered pages does not work. Not in Preview, nor Adobe Reader. I Don't know why. i'm using a hp Color LaserJet 2550L. I just worked fine, but I cannot remember the time this failing first occured. I really hope the problem will be solved quick and easy.
    Thanks so far
    Bastian.

    Mine does not work either. I have trashed prefs, rewrote permissions, ran Disk Utility from a separate HD, etc. and I cannot get this feature to work.
    I got 45 odd pages to print last night and now it won't print odd or even pages. I am reduced to printing every backside page one at a time. If I would have known about this problem before I could have saved myself an hour and just printed them all on single sided sheets. I tried to save paper and now I'm screwed (timewise)......
    Any other suggestions would be greatly appreciated.
    Thank You,
    Dave Buckley

  • Grayscale printing only option in Pages"

    I have a TX400 Epson printer and it appears there is not an option for Gray Scale printing only in Print Preview as you might expect .Apple support told me this was a function of the printer's drivers but Epson say otherwise.Is there a driver or firmware I can download or is there something in i Works or Leopard that I need to activate to correct the issue.?

    Caveat: I’m using Tiger and an Epson Photo 1400 so maybe things won’t be the same but should at least point you in the right direction. Click on Copies & Pages and scroll down to Print Settings. There you can choose Color or Grayscale.
    Walt

  • How do I print only in black on a photosmart 7520 with a Mac Pro?

    How do I set the Photosmart 7510 to print only in black from my MacBook Pro?

    Hi,
    Follow the steps below in order to print using Black Ink only:
    1. From the application used to print, click the File menu and select Print.
    The Print window appears.
    NOTE: The Print window might be minimized: Click the blue triangle next to the product model (Mac OS X v10.5 or v10.6) or the Show Details button ( Mac OS X v10.7 Lion or above) to see all available settings.
    2. To access the color options, click the lowest selection box listed as the name of the program (e.g. TextEdit)
    Will appear as Copies & Pages within Microsoft Office applications.
    3. Select Paper Type/Quality from the drop-down menu.
    4. Click the triangle next to Color Options to expend the settings.
    5. Set the Color field as Grayscale.
    6. Set the Grayscale Mode as Black Ink Cartridge Only.
    You may save the settings for future use by clicking Presets > Save Current Settings as Preset... any used preset will remain as default till another preset will be used.
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

Maybe you are looking for

  • Problem with @OneToOne relationship in EJB 3.0

    Hi, I'm new to EJB 3.0. If i done any stupid thing please forgive me. Here is my doubt. I would like to use one-to-one relationship between two entities like USER and ADDRESS. I just did like this (the below code)to enable the relationship between th

  • Dynamic menu in tree structure in JSP

    Hi, 1) I need to display a dynamic menu in JSP. The menu depends on the values received from database. I need to show the items in the structure of tree (like parents, child relation). The tree can have multiple levels (the parent can have children &

  • Hiding a field in ODS

    HI experts,            may i know how do i hide an Info Object in ODS. I have some confidential data in this field which i dont my report writers to view, is it possible for me to hide this field. Thank You, John.

  • Can I speak with someone about making changes to the Family Base Data usage limit?

    Duplicate post - please visit: https://community.verizonwireless.com/thread/813039 Message was edited by: Admin Moderator

  • Serial number won't work reinstalling Adobe Acrobat Pro X

    I purchased CS6 Design and Web Premium which includes Adobe Acrobat Pro X. I've had continuing problems using Acrobat, so I decided to reinstall it. I was able to download it, but when I enter my serial number it tells me it's invalid. I'm copying it