Replacing colors not working?

Hi,
I have a picture of an old retro tv that I want to change the edge color of the tv from red to sky blue.
I follow the steps from the Adobe Photoshop CS5 "Clasroom in a book" using the color replacement tool, size 15 pixels brush, hardness 40%, and spacing 25%, hue, continuous sampling, fine edges, tolerances 32% and auto-alias.
I brgan paintng and the color comes out in a very dark blue? Did I miss something?
Is there a way to change the original red color to sky blue?

When you use the Hue/Saturation adjustment layer, activate the hand symbol with the arrows going left and right and click on the part of the image you want to change the color of. This will select the color channel that needs changing.  In the case of your TV screenshot, Cyans will be selected. Moving the hue slider to the right will make the cyans in your image less greenish.
If you know the exact RGB values of the color blue you want, you should be able to input them in the Replace Color dialogue by clicking on the Result swatch and entering the values. However, the success of using that dialogue depends on how accurately you are able to select the color you want to change. The quality of the screenshot I was able to make from your post was quite poor so it was difficult to get an accurate selection of the area you want to change the color of by using the fuzziness slider.
Another possibility would be to make a selection of the area you want to change (e.g. using the pen tool) and fill the selection with the color you want. If you have a swatch of the blue you want, you only have to make it your foreground color and fill the selection via Edit - Fill - Foreground color

Similar Messages

  • Text replacement does not work in Safari

    Text replacement does not work in Safari forms etc. Is it me or a bug?

    Interesting… I have eee set to auto-correct to an email address.
    if I type a few words and then add eee it works. But if I just enter eee in the email address of a form it does not.

  • Color Replacement does not work

    I'm tyring to work through the tutorials. I've done the color replacement instructions over and over again just as the instructions seem to say which isn't very good, and nothing happens. Can anyone give a step by step instruction that works. The ones in the iPad tutorial for the MAC version is not working. I am working with version 14.XX on a Macbook Pro totally up to date.
    I watched a youtube video but is for an older version. Not much help as tools have been changed.

    Brainsprain wrote:
    I got it to work using a method from YouTube not from Adobe.
    So you didn't use Photoshop at all then?  That's a cool trick.

  • Adobe Photoshop CS5 color replacement tool not working well

    I am using adobe photoshop  CS5, when I use color replacement tool it replace color with its own choice not mine and I have visited many blogs but no solution
    Please contact me at: [ links removed by admin ] I shall be very thankful

      This is picture before color replacement tool and this is after whereas i needed white backgroud and black foreground. I visited many blogs but couldn't do it correctly.

  • Nebula grid GridItem.setForeground(color) not working

    I am using GridTableViewer and Nebula Grid.
    I am in processing of replacing old grid with new grid
    version = org.eclipse.nebula.widgets.grid_1.0.0.201506030727.
    I am setting individual row's foreground color.
    for ( int i=0; i < items.length; i++){
    items[i].setForeground(color); ;
    The above code worked with old grid version ver = 1.0.0.201209220511
    However it's not working with new version. What do I need to change?
    Thanks
    Dhiresh

    If you are using a GridTableViewer why are you then calling out to the
    SWT-API? It is the job of the LabelProvider to provide the foreground
    color.
    If you can reproduce this:
    a) with a Grid only snippet (no JFace viewer)
    b) with a GridTableViewer only snippet (no call to GridItem)
    File a bug and we can take a look if this is a regression
    Tom
    On 08.07.15 00:53, Dhiresh Patel wrote:
    > I have grid.setCellSelectionEnabled(true);
    >
    > What I found was that if I did GridItem.setForeground(index,
    > foreground); for
    > all the columns it works - meaning the whole row has that foreground color.
    >
    > But GridItem.setForeground(foreground); does not work - Has this been
    > changed?
    >
    > Thanks,
    >
    > Dhiresh

  • Formula variable using Replacement path not working

    Dear All,
    I am using a query to calculate YTD values in the report. I am using a formula variable to calculate the number of months. Formula is
    Month To - Month From+1
    When I am giving the range from 001 to 006 for period in th evariable screen,
    I am gettung Month To as 6 and Month From as 6 with total no . of months as 1.
    I think Month From is not being caculated properly. I created another formul variable using Replacement path, for characteristic Posting period, replace with a Key and dimension ID as number with out any offset.
    Still not working.
    Any suggestions.
    Thanks and Regards,
    Srini
    Edited by: Srinivas on Apr 24, 2008 11:13 AM

    Hello,
    I have seen this document already. It is slightly different from what I am trying to do here than what the post shows. How ever,  I did everything right, atleast seems to be and don´t know why I am not getting the From value from the posting period selected. To value variable is coming right.
    Any more sugegstions.?
    Thanks and Regards,
    Srini

  • Ipad display issue - replaced still not working

    I replaced a LCD display on iPad 1 thinking it was bad.  Turned this unit on and it is still not working.  Tried the display on another iPad and it works fine so I know it is not the LCD.  The ipad in questions is recognized in iTunes.  Backlight doesn't come one

    There is obviously a hardware problem and doubtful if anyone here will know what that is.

  • Replace does not work

    Hi,
    I need to replace all characters between 1 and 31 (ASCII) for space in a file.
    I created a script to test but it is not working (I tried two alternatives to replace).
    $a = "Test$([char]26)Test$([char]27)Test"
    $File_out = Join-Path $PSScriptRoot "teste.txt"
    Remove-Item $File_out -ErrorAction SilentlyContinue
    Add-Content -Path $File_out -Value $a
    for($codAscii=1;$codAscii -le 31;$codAscii++){
    $codAscii
    $b = $a.Replace([char]$codAscii," ")
    $c = $a -replace [char]$codAscii," "
    Add-Content -Path $File_out -Value $b
    Add-Content -Path $File_out -Value $c
    Result:
    What I need
    Thanks in advance.
    Fábio de Paula Junior

    My workaround
    function myReplaceAscii1_31([string]$Line,$NewChr){
    for($codAscii=1;$codAscii -le 31;$codAscii++){
    while($Line.Contains([char]$codAscii)){
    $Pos = $Line.IndexOf([char]$codAscii)
    $Line = $Line.Substring(0,$Pos) + $NewChr + $Line.Substring($Pos+1)
    return $Line
    $a = "Test$([char]26)Test$([char]27)Test"
    $File_out = Join-Path $PSScriptRoot "teste.txt"
    Remove-Item $File_out -ErrorAction SilentlyContinue
    Add-Content -Path $File_out -Value $a
    for($codAscii=1;$codAscii -le 31;$codAscii++){
    $codAscii
    $b = $a.Replace([char]$codAscii," ")
    $c = $a -replace [char]$codAscii," "
    $d = myReplaceAscii1_31 $a " "
    Add-Content -Path $File_out -Value $b
    Add-Content -Path $File_out -Value $c
    Add-Content -Path $File_out -Value $d
    Fábio de Paula Junior

  • Replacement battery not working properly

    Hello,
    I have a G72 Notebook and I just recently bought a replacement battery that is not working properly.
    I think that the laptop is just not able to communicate with the battery to find out how much power it has left.
    I'm pretty sure that the battery is taking charge just fine (although the icon says, "plugged in, not charging" because I used it for a couple hours today and it never changed from "41%".
    Right now it says "0%" but continues to power my computer if I unplug it.
    I've tried cleaning the connectors and I've tried uninstalling and reinstalling the battery driver.
    My old battery still charges just fine and works perfectly it just doesn't last more than an hour or so.
    I ordered the replacement battery that it listed on my old battery, but it seems to not snap in quite right.
    It fits in my computer, it just isn't as smooth to snap in as my old one is.  As far as I can tell it's exactly the same except I think some of the little plastic parts have slightly different sizes.
    Thanks for any help!

    Hi
    Try this:
    Disconnect AC
    Shutdown
    Remove battery
    Connect AC
    Startup
    Open Device Manager
    Click the plus (+) sign next to Batteries category, right-click All of the "Microsoft ACPI Compliant Control Method Battery" listings, and select Uninstall In the "Confirm Device Uninstall" dialog box, click OK. (it’s ok if you only have 1 of these listings).
    Click the plus (+) sign next to System Devices.
    Right-click the “ACPI Fixed Features Button" and select Uninstall. In the "Confirm Device Uninstall" dialog box, click OK.
    Shutdown
    Disconnect AC
    Insert battery
    Connect AC
    Startup
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • G62-355dx cpu replaced still not working

    My g62-355dx is still not working after replacing the cpu (thats what the blink code was....caps lock blinking once every few seconds) so after replacing the cpu I am still getting the same blink code....tried the hard reset before replacing the cpu but havent tried it after....I just need to know if its possibly the mother board and if a motherboard from a different g62 model will work in my 355dx....
    This question was solved.
    View Solution.

    This is about the third post of its type I have fielded in the last month or so and I will repeat what I have always maintained. It is almost never the CPU, regardless of the blink code. It is almost always the motherboard. Your by far safest bet is to replace like with like although likely another g62-300 series motherboard will work, if it has any feature yours did not or vice versa it may take some case mods to make it fit and you want to avoid that.
    You will need the Service Manual:
    .pdf of manual here
    Your motherboard part number can be found inside the memory compartment. Post back if you want detailed help finding a replacement.

  • Send to Color not working

    Ok guys, I have searched everywhere and I reckon I have tried everything. Basically I have a sequence that I sent to color, go to color, colour correct everything, render and then select Send to Final Cut Pro. FCP open, says importing XML, gets to about 50% and stops, no message or error. I don't get a new sequence from color, just nothing.
    Tried importing just the XML with the came result.
    I have tried trashing the prefs, went back through the time line and removed every effect and transition. Still does not work. I had it work once before and everything was fine. But now.....it is so frustrating. I just want it to work as I need to get this video finished.
    I am running FCP 6.2 and color 1.2, the latest anyway. Does anyone have any ideas. I have wasted days on this and cannot get it to work.
    Message was edited by: Jared Bell

    Without access to the sequence, its impossible to say.
    There is something in it that is corrupting the round trip. It might be illegal media (which would be otherwise perfectly fine in FCP) or it might be something nested that XML can't cope with, re-directing the links to the new media. Unfortunately, the KISS principle is king.
    jPo

  • Color not working on HP printer

    Hi, I have never had this problem until today. My HP photosmart C4400 printer is not printing in color, and the black ink is faded as if the ink supplies are low. I checked the cartridges and the supply levels, all almost brand new and the expiration dates are 2010. I have tried restarting and rebooting but it will not work. Can anybody help please? Thank you

    Hi,
    Try following the steps listed below, I believe that should solve the issue:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=uk&​dlc=en&docname=c03640384&lc=en&jumpid=reg_r1002_uk​...
    If the issue remain, be sure to provide some more details - any specific error or behavior while trying to launch the HP Software?
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Code to change JTable cell color not working

    My code below is supposed to change the color
    of a single JTable cell however its not working.
    Could anyone please tell me why?
    Here's the code:
    import java.awt.*;
    import javax.swing.table.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class ColorTable extends JTable {
    public ColorTable() {
    AbstractTableModel tableModel = new AbstractTableModel() {
    public Class getColumnClass(int column) { return Integer.class; }
    public int getColumnCount() { return 6; }
    public int getRowCount() { return 10;}
    public Object getValueAt(int row,int col) { return new Integer(row * col); }
    setModel(tableModel);
    setDefaultRenderer(Integer.class,new ColorRenderer(Color.cyan));
    this.setRowSelectionAllowed(false);
    this.setCellSelectionEnabled(true);
    addMouseListener(new MouseAdapter() {
    private ColorRenderer renderer;
    private JColorChooser chooser = new JColorChooser();
    public void mousePressed(MouseEvent e) {
    if(e.getModifiers() == MouseEvent.BUTTON3_MASK) {
    System.out.print("rowAtPoint(e.getPoint())=" +rowAtPoint(e.getPoint()));
    System.out.print( "columnAtPoint(e.getPoint()))=" + columnAtPoint(e.getPoint()));
    renderer = (ColorRenderer)getCellRenderer(rowAtPoint(e.getPoint()), columnAtPoint(e.getPoint()));
    // chooser.setColor(renderer.getColor());
    renderer.setColor(chooser.showDialog((Component)e.getSource(),"Choose Cell Color",chooser.getColor()));
    class ColorRenderer extends DefaultTableCellRenderer {
    private Color cellColor;
    public ColorRenderer(Color color) { cellColor = color; }
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
    System.out.print("row= " + row + "\n");
    System.out.print("column= " + column + "\n");
    System.out.print("OBJECT VALUE=" + value.toString());
    //Component comp = super.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);
    super.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);
    if (isSelected) {
    setOpaque(true);
    setBackground(cellColor);
    else {
    setBackground(Color.white);
    setForeground(Color.black);
    return this;
    public void setColor(Color color)
    cellColor = color;
    ColorTable.this.repaint();
    public Color getColor() { return cellColor; }
    public static void main(String[] args) {
    JFrame frame = new JFrame();
    JPanel panel = new JPanel();
    ColorTable table = new ColorTable();
    panel.add(table);
    frame.getContentPane().add(panel);
    frame.setSize(500,250);
    frame.setVisible(true);

    My code below is supposed to change the color
    of a single JTable cell however its not working.
    Could anyone please tell me why?
    Here's the code:
    import java.awt.*;
    import javax.swing.table.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class ColorTable extends JTable {
    public ColorTable() {
    AbstractTableModel tableModel = new AbstractTableModel() {
    public Class getColumnClass(int column) { return Integer.class; }
    public int getColumnCount() { return 6; }
    public int getRowCount() { return 10;}
    public Object getValueAt(int row,int col) { return new Integer(row * col); }
    setModel(tableModel);
    setDefaultRenderer(Integer.class,new ColorRenderer(Color.cyan));
    this.setRowSelectionAllowed(false);
    this.setCellSelectionEnabled(true);
    addMouseListener(new MouseAdapter() {
    private ColorRenderer renderer;
    private JColorChooser chooser = new JColorChooser();
    public void mousePressed(MouseEvent e) {
    if(e.getModifiers() == MouseEvent.BUTTON3_MASK) {
    System.out.print("rowAtPoint(e.getPoint())=" +rowAtPoint(e.getPoint()));
    System.out.print( "columnAtPoint(e.getPoint()))=" + columnAtPoint(e.getPoint()));
    renderer = (ColorRenderer)getCellRenderer(rowAtPoint(e.getPoint()), columnAtPoint(e.getPoint()));
    // chooser.setColor(renderer.getColor());
    renderer.setColor(chooser.showDialog((Component)e.getSource(),"Choose Cell Color",chooser.getColor()));
    class ColorRenderer extends DefaultTableCellRenderer {
    private Color cellColor;
    public ColorRenderer(Color color) { cellColor = color; }
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
    System.out.print("row= " + row + "\n");
    System.out.print("column= " + column + "\n");
    System.out.print("OBJECT VALUE=" + value.toString());
    //Component comp = super.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);
    super.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);
    if (isSelected) {
    setOpaque(true);
    setBackground(cellColor);
    else {
    setBackground(Color.white);
    setForeground(Color.black);
    return this;
    public void setColor(Color color)
    cellColor = color;
    ColorTable.this.repaint();
    public Color getColor() { return cellColor; }
    public static void main(String[] args) {
    JFrame frame = new JFrame();
    JPanel panel = new JPanel();
    ColorTable table = new ColorTable();
    panel.add(table);
    frame.getContentPane().add(panel);
    frame.setSize(500,250);
    frame.setVisible(true);

  • Replacing icons not working

    Whenever I try to replace the icon on the external hard drive using time machine, it shows the icon for the photo file instead of the actual photo:
    But I want it to show this photo as an icon:
    Any ideas?

    When you use the Hue/Saturation adjustment layer, activate the hand symbol with the arrows going left and right and click on the part of the image you want to change the color of. This will select the color channel that needs changing.  In the case of your TV screenshot, Cyans will be selected. Moving the hue slider to the right will make the cyans in your image less greenish.
    If you know the exact RGB values of the color blue you want, you should be able to input them in the Replace Color dialogue by clicking on the Result swatch and entering the values. However, the success of using that dialogue depends on how accurately you are able to select the color you want to change. The quality of the screenshot I was able to make from your post was quite poor so it was difficult to get an accurate selection of the area you want to change the color of by using the fuzziness slider.
    Another possibility would be to make a selection of the area you want to change (e.g. using the pen tool) and fill the selection with the color you want. If you have a swatch of the blue you want, you only have to make it your foreground color and fill the selection via Edit - Fill - Foreground color

  • Bright Colors Not Working

    Hey all,
    So I start to work on something in Photoshop CS6 and suddenly certain colors don't show up right. Specifically bright bright blues and greens show as black. It seems to work in 32-bit RGB, but these colors have worked fine in standard 8-bit and I've worked with them before. Thumbnails, color picker, and saving for web seem to load the colors just fine. From what I can tell, in this random range it goes to black with saturation hits 100 in the color picker.
    Attached is a screenshot. The circle is supposed to be bright blue (00d4f6) and the central rounded square is supposed to be Twitter's blue. both don't show up except for some slight coloring on the edges.
    Anyone know how to fix this?
    Thanks!

    At least one of these questions comes in per day.  It's hard to imagine AMD has let it go this long.
    if nothing else it's a good way to make answer points. 
    I see that 13.2 has been at beta 7 level for 2 weeks now...  Probably means they've submitted it to Microsoft for WHQL certification, so hopefully we'll see a release soon.
    -Noel

Maybe you are looking for