change of paint color

Hello

I have a simple question reletively that I can't answer.

I'm in CS3, and if I have something on a coat of paint to change the color afterwards, how do I do that?

Thank you

kairosmatt

It depends really on what you are working with, but the most basic level, you must use something like Image-> adjustments-> Hue/Saturation

Tags: Photoshop

Similar Questions

  • I can't change the font color in painting

    Hello, I've been tryint to change one of my pictures using paint softwear, I tried to write a text on the pictuer but the font color remains black I chose diffierent colors of the selection of the color of the tools but never work... Please help me change my text color.

    also what is the way to write in languages forgen what type of fonts is accepted in the paint when I try to type in the language forgen is all what I get question marks? ... Please help me.

    Hello

    ·        What version of the operating system is running on your computer?

    Step 1: Try to edit a different image.

    Windows Vista: http://windows.microsoft.com/en-US/windows-vista/Paint-tools

    Windows 7: http://windows.microsoft.com/en-US/windows7/Getting-started-with-Paint

    Step 2: Register a new user account.

    Windows Vista: http://windows.microsoft.com/en-US/windows-vista/Create-a-user-account

    Windows 7: http://windows.microsoft.com/en-US/windows7/Create-a-user-account

  • First HP: Change the background color of a cell in the spreadsheet app (program)

    I created a very simple program to change the background color of two cells in the speradsheet application:

    First version of HP 2015 6 17. 8151 Rev

    1. EXPORT BGCOLORCHANGE()

    2. START TO

    3 STARTAPP("Spreadsheet");    Application of the open worksheet

    4 STARTVIEW (2,3);    in the symbolic view

    5 Cell (1,1,7): = RGB (0,255,0);    cell A1 green paint

    6 cell (1,2,7): = 31744;    red paint A2 cell

    7. END;

    PROBLEM: instruction 6 works, but section 5 only. Why?

    Thank you!

    The background color of worksheet uses 5 bits per color channel, then the function RGB() expects 8 bits per channel.

    The background color of worksheet can be calculated by: R * 32 ^ 2 + G * 32 + B where R, G and B are between 0 and 31 inclusive.

  • Change the background color of line indicator

    I'm doing an indicator of string with a black background or make it to which the channel indicator is transparent

    Thank you

    You can change the background color of the control a chain using the paint tool. Choose View > Tool Palette.

    Select the icon below a brush.

    Right-click on the background area of your control of the chain.

    A color mixer will appear - select a color block or the T in the upper right corner to transparent.

  • How to change the font color

    as in the subject...

    I have a class that extends the VerticalFieldManager and paint method:

     

    public void paint (Graphics _g) {}

    Super.paint (_g);

    _g.setColor (Color.Black);

    _g.fillRect (0, 0, getWidth(), getHeight());

    _g.setColor (Color.Red);

    _g.drawRect (0, 0, getWidth(), getHeight());

    }

    So what I have is a black rectangle with red edges.

    later in another part of the program, I make an object of this class and I want to add a TextField to write to him. the problem is, the font color is black and is also the background of my rectangle. I want to change the font color in the TextField in white, but I have problems. I tried to crush paint method as follows:

    _Tf TextField = new TextField() {}

    Public Sub paint (Graphics _g)

    Super.Paint (_g);

    _g.setColor (Color.White);

    }

    but it won't help.

    Anyone know how to solve?

    concerning

    Make the call to setColor before calling super.paint (...).  Although you might need to save/restore the current color

    {} public void paint (Graphics g)

    oldColor int = g.getColor ();

    g.setColor (Color.WHITE);

    Super.Paint (g);

    g.setColor (oldColor);

    }

    The color setting is perhaps an exaggeration, but you can play with it.  I remember in the past where I had put the red label text, then a bunch of controls designed after it was all red.

  • How to change the background color

    How to change the background color of the label field, how to do it thanks

    I can change the color of labelfield, but I want to change the background,

    How can I do this

    Thank you.

    I do not know mantaker do not want to forget the call to super...

    public void paint (Graphics gs) {}

    gs.setBackgroundColor (0x00FF0000); red background

    GS. Clear();

    Super.Paint (GS);

    }

  • FieldManager and background color - how to change the background color FiledManager

    I use the following code to navigate

    Change the background color of the domain manager. I see the print, but backgorund color FieldManager does not evolve!

    FMHorizSingleCont is a FieldManager. Thank you.

    final class UserInterfaceScreen extends MainScreen {
    
    private FMHorizSingleCont[10] fmSingContent; // fmsingContent is a field Manager
    
    public FMVerticalContents (){
        try
        {
          numElements = 0;
          currentRow =0; // Row where the focus is
          Background back = BackgroundFactory.createSolidBackground (Color.BLUE);
                ......................
    
    protected boolean navigationMovement(int dx, int dy, int status, int time) {
            if(dy<0){
          if(currentRow != 0)
          {
           currentRow--;
           fmSingContent[currentRow].setBackground(back);
           System.out.println("FMVerticalContents -- dy < 0 !!!");
           invalidate();
          }
    
        return true;
        }
        else if(dy>0){         
    
          if(currentRow < numElements)
          {
            System.out.println("FMVerticalContents -- dy > 0 !!!");
            fmSingContent[currentRow].setBackground(back);
            currentRow++;
            invalidate();
                                }
            return true;
           }else{          
    
           return true;
        }     
    
      }
    

    A HorizontalFieldManager does not paint anything, it's just a control class.
    You can crush his painting method to change this, for example with fillRect before calling super.

  • Change the background color of PasswordEditField

    Hi all,

    I am able to change the background color of an EditField by overriding the paint method such as:

        protected void paint(Graphics g) {
            g.pushContext(getExtent(), 0, 0);
            g.setBackgroundColor(Color.WHITE);
            g.clear();
            g.popContext();
            g.setColor(Color.BLACK);
            super.paint(g);
        }
    

    It gives me an EditField with white background and black text color. However, the same code does not apply to the PasswordEditField. Does anyone have an idea why it does not apply to the PasswordEditField or other suggestions to change the color background and text PasswordEditField.

    Thank you...

    Hello

    If you want to change your background color, you will need to override paintBackground(), no paint method.

    Code for your solution,

    Field of PasswordEditField = new PasswordEditField()
    {
    Protected Sub paintBackground (Graphics g)
    {
    g.setBackgroundColor (Color.BLACK);
    g.Clear ();
    }

    protected void paint (Graphics g)
    {
    g.setColor (Color.PINK);
    Super.Paint (g);
    }
    };

  • Help needed Illustrator - apparently is no longer able to change the line color of the open/closed contours.

    Hi, I'm new (very) to Illustrator so please go easy. I'm in a bit of a pickle and would very much help to get out!

    I created an illustration using the pen tool, making a series of paths open and closed (below), all stroked them in the color purple. I then used the Shapebuilder Ranger a few areas of intersection.

    Later, I started using live paint to color block the form contained in the paths, however, when I try to change the outline of these 'forms' that won't happen.

    I tried releasing the images of live paint and changing the line color of the sketch (i.e. opening and closing original tracks), but this does not work either.

    Any advice?

    Thanks in advance,

    Will be

    screen grab.png

    Inside a live paint group you must activate the coloring of the traits.

    To do this, double-click the live paint tool.

    When you expand a live paint group, fills and strokes is separated. You get a group that has all the traits and another which has fillings.

    You will need to inspect it in the layers panel, and then select the Group of traits in order to change.

  • How to change the default color of the chart.

    Hello

    I want to change the color of the graph dafault. For example, when I change the color by default in position 1, it will affect all color graphics of position 1. I mean change the color by default in a place, and it will affect each graph in poet. How can I get?

    Thanks in advance.

    The colours in the painting are to be referred to as * 'palette.cxml' * files in these directories

    BI_HOME\web\app\res\s_oracle10\chartsupport
    BI_HOME\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\chartsupport

    You can change your custom colors.
    Restart OC4J and PS to the new work...

    Kind regards
    Rambeau

  • Is it possible to change the external color of the iPhone?

    I wanted to know if its possible to change the external color of the iPhone. My mother bought a pink iPhone, but she could not get used to it, so she gave it to me, and I want to know if its possible to pass to a rose grey.

    Thank you.

    None

  • How can I change the background color for the bar 'help file edit view history bookmark tools' in Firefox 29,0

    How can I change the background color for the bar 'help file edit view history bookmark tools' in Firefox 29,0

    You can add a theme of solid color to change the color of the top of the browser window, which contains the Menu bar.

    https://addons.Mozilla.org/en-us/Firefox/themes/solid

  • How I change the background color?

    This has been answered before, but for older versions of Pages with settings that no longer exist, and I can't seem to understand. How can I change the background color in the Pages?

    I inserted one rectangle and size for the cover page. I can't send to back, despite clicking on the button to do it, nor can I scroll with me instead of having to insert a new for each page, which would be much too tedious, even if I clicked "move with the text." What Miss me?

    Hi shockvaluecola,

    This rectangle selected, Menu > reorder > Section Masters > move object of Section Master.

    This context is displayed on each page of this Section.

    To remove the object of Section Master Menu > reorder > Section Masters > make Master objects selectable.

    Select (by clicking in the margin of page for me works), then delete.

    Kind regards

    Ian.

  • Change the default color of Firefox opening links in a new tab

    I use stylish addon for Firefox with a dark default css. I also changed the default window colors in the Windows registry. This changed the subject: white page to a dark color. But when I open a link in a new tab before the page is loaded, Firefox displays a blank page with a white background. I wonder how to change the white color to another.

    See also the discussion in this old MozillaZine forum thread.

  • How to change the font colors in the communities of support?

    How to change the font colors in the communities of support?

    Thank you

    Press or click on use the Advanced Editor in the upper right of this text block which will take you to it.

Maybe you are looking for

  • How can I set my tabs so google opens as soon as I open a new tab?

    I had firefox put in place, that if I open a new tab, google would be the page. About: config the browser.newtab.url still says www.google.nl, but all I get is a choice to have the tiles or a page completely empty.

  • RAZR M Kitkat 4.4.4?

    The Razr M will get difficulty release 4.4.4? I know the 2013 Motorla Droid are get it but I was wondering if the Motorla DROID 2012 also received it. Thanks for your time

  • Ansd valet Plus Windows 8.1

    I try to install my new computer to an existing M20 W8.1... Get a msg incompatible or will not work before this system. Any suggestions?

  • MARKED AS CORRUPT DRIVERS

    The device, CD ROM Drive, reports "Tv_ConfigMgrErr39". The device won't be available until the problem is resolved.  The Plug and Play ID for this device is SCSI\CDROM-VEN_HL-DT-ST-PROD_DVDRA,_GH24nsbo\4-28652-010000 I have spent hours on the Interne

  • onExposed not called

    Hello I have a problem that a screen is not be changed because it's "onExposed" method is not called when I expect to be. Here's the scenario: 1 screen 'foo' extends screen and is displayed. 2. the user selects a menu item which, among other things,