JButton.setBackground(Color color) not working

With JDK 1.4.2, my JButtons below have a blue background. When I compile with 1.5, they are gray. I tried using setOpaque(true) on one of them below. It didn't work. Any ideas?
class MainMenu extends JFrame
    public MainMenu() throws Exception
        super("");// no title on main menu
        JPanel pane = new JPanel(null, true);
        pane.setBackground(new Color(4194496));
        Icon icon = new ImageIcon(BizThriveMenu.getResourceDir()+"\\BizThriveSmall.gif");
        JLabel lImage = new JLabel(icon);
        JButton bEditCustomers = new JButton("<html><FONT COLOR=WHITE>Customers</FONT></html>");
        bEditCustomers.setOpaque(true);
        bEditCustomers.setBackground(new Color(4194496));
        JButton bAccounting = new JButton("<html><FONT COLOR=WHITE>Accounting</FONT></html>");
        bAccounting.setBackground(new Color(4194496));
        JButton bEditReminders = new JButton("<html><FONT COLOR=WHITE>Reminders</FONT></html>");
        bEditReminders.setBackground(new Color(4194496));
        JButton bPublish = new JButton("<html><FONT COLOR=WHITE>Publish</FONT></html>");
        bPublish.setBackground(new Color(4194496));
        JButton bExit = new JButton("<html><FONT COLOR=WHITE>Exit</FONT></html>");
        bExit.setBackground(new Color(4194496));
        bEditCustomers.addActionListener(
            new ActionListener() {
                public void actionPerformed(ActionEvent actionEvent) {
                    try {
                        new TableListFrame(MainMenu.this, "customers");
                    catch (Exception e) {
                        e.printStackTrace();
        bAccounting.addActionListener(
                new ActionListener() {
                    public void actionPerformed(ActionEvent actionEvent) {
                        try {
                            new AccountCategoryListFrame(MainMenu.this, "accountCategories");
                        catch (Exception e) {
                            e.printStackTrace();
        bEditReminders.addActionListener(
            new ActionListener() {
                public void actionPerformed(ActionEvent actionEvent) {
                    try {
                        new CurrentRemindersFrame(MainMenu.this);
                    catch (Exception e) {
                        e.printStackTrace();
        bPublish.addActionListener(
            new ActionListener() {
                public void actionPerformed(ActionEvent actionEvent) {
                    try {
                        new Designer(MainMenu.this);
                    catch (Exception e) {
                        e.printStackTrace();
        bExit.addActionListener(
            new ActionListener() {
                public void actionPerformed(ActionEvent actionEvent) {
                    System.exit(0);
        Font buttonFont = bEditCustomers.getFont();
        buttonFont = new Font("Times New Roman", Font.ITALIC+Font.BOLD, 24);
        bEditCustomers.setFont(buttonFont);
        bAccounting.setFont(buttonFont);
        bEditReminders.setFont(buttonFont);
        bPublish.setFont(buttonFont);
        bExit.setFont(buttonFont);
        pane.add(lImage);
        pane.add(bEditCustomers);
        pane.add(bAccounting);
        pane.add(bEditReminders);
        pane.add(bPublish);
        pane.add(bExit);
        int appWidth = 500;
        int appHeight = 700;
        this.setSize(new Dimension(appWidth,appHeight));
        this.setResizable(false);
        this.getContentPane().add(pane);
        Insets insets = pane.getInsets();
        lImage.setBounds(((appWidth-4-icon.getIconWidth())/2)+insets.left, 35+insets.top, icon.getIconWidth(), icon.getIconHeight());
        bEditCustomers.setBounds(((appWidth-4-235)/2)+insets.left,  200 + insets.top, 235, 40);
        bAccounting.setBounds(((appWidth-4-235)/2)+insets.left,  250 + insets.top, 235, 40);
        bEditReminders.setBounds(((appWidth-4-235)/2)+insets.left,  300 + insets.top, 235, 40);
        bPublish.setBounds(((appWidth-4-235)/2)+insets.left,  350 + insets.top, 235, 40);
        bExit.setBounds(((appWidth-4-235)/2)+insets.left,  400 + insets.top, 235, 40);
        //center application window on desktop
        Dimension screenSize = null;;
        screenSize = getToolkit().getScreenSize();
        this.setBounds((screenSize.width - appWidth)/2,
            (screenSize.height - appHeight)/2, appWidth, appHeight);
        // make the frame visible
        this.setVisible(true);
    }

As a newbie to the forum you obviously didn't understand how to post a simple direct question, with only the relevant code to demonstrate the problem, which is why I provided you with all the extra information to help you get better answers in the future.
Did you bother to read the link of creating an SSCCE?
Your question is about setting the background color of a button. 99% of the code you posted is not related to that issue. Keep the code simple so we don't waste time reading through unnecessary code. That way we can determine whether the problem is with your code or the environment as I already mentioned.
1) Though the information about setting the text color is helpful, the
background color of the button is the subject of the posting. Please
limit your replies to the subject of the posting.If the code posted was only related to the background color then we wouldn't have this issue now would we? When I see something strange or wrong I make a comment whether it is directly related to the question or not. It has been my experience that most people appreciate the bonus advice, so I will not change my behaviour for you. If you don't like the advice, then just ignore it.
2) Regarding, "I don't use 1.5 so I can't really help you, but neither can
anybody else...", please read Michael_Dunn's post, who remarkably
was able to provide help.My comment was related to the code you provided. Nobody could use the code to compile and execute to see if it ran on their machine. So, Michael, had to waste time creating his own simple test program to see if it worked, which it did.
My point was if you provided the same simple demo program that Michael did, then all he (or anybody else) would have had to do would be to copy, compile and test the program. You should be spending the time creating the simple test program not each of us individually. Think of how much time is wasted if everybody who wanted to help you had to create their own program? Thats why I included the link on creating an SSCCE, so the next time we don't need to waste time.
3) ..... Otherwise, it's alright not to reply to a subject. Nobody will think less of you.Of course I don't have to replay to every question (and I don't), but if you don't learn to post a question properly you will make the same mistake again and again. That was the context of my answer. It was designed to help you ask a better question the next time.
4) Your comment, "And don't forget to use the Code Formatting Tags > so the code retains its original formatting." That was a standard message I use for many newbies to the forum. I'm amazed at the number of people who think we are mind readers and can guess exactly what is causing the problem without posting any code. So I got tired of typing in a different message every time and I now just cut and paste. Yes I could have edited the last line out, but you would be amazed at how many people format the code the first time but then forget to do it when prompted for more detail. So I just keep it in all messages.
Please keep your comments related to the problem. I think I've learned a think or two over the years on how to ask and answer a question.

Similar Messages

  • Hello! I'm using Aperture with Efex plugins and notice, what when I saving result in plugin and go back to aperture, preview mode is going to grey color and not working until I reboot Aperture. Did you saw this problem?

    Hello! I'm using Aperture with Efex plugins and notice, what when I saving result in plugin and go back to aperture, preview mode is going to grey color and not working until I reboot Aperture. What is intresting - in full screen mode everything works fine. Did you saw this problem?

    It seems there's a workaround here:
    https://discussions.apple.com/thread/5566037?tstart=0

  • Pick color feature not working properly -- how do I reset?

    Pick color feature not working properly -- how do I reset?

    You need to contact Adobe for you billing problem this is a user four not adobe customer support.
    For your Photoshop Problems this user community may be helpful. 
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • "Select Color Range" not working. "Warning: No pixels were selected" returned when attempting to use. Using Photoshop CS6 on a Mac running OS X Yosemite

    "Select Color Range" not working. "Warning: No pixels were selected" returned when attempting to use. Using Photoshop CS6 on a Mac running OS X Yosemite

    Here are three screenshots in succession from trying to perform the color selection:
    Dropbox - Screenshot 2015-02-12 14.57.40.png
    Dropbox - Screenshot 2015-02-12 15.00.14(2).png
    Dropbox - Screenshot 2015-02-12 15.01.00.png

  • Final Cut 6 and Color does not work

    Hello,
    I bought FInal Cut Pro Studio 2 and i receive the suite today and instal only apps ( no contents and loops )without problem
    Tried to open FCP6 and Color but not working.
    i launch FCP 6 or Color,2 jumps on dock and then quit.
    can be memory problem.( i have 768RAM on my imac G5 64VRAM)
    any pacth to resolv this problem?
    ps* SountrackPro 2,DVDStudio Pro,Motion3,LiveType,CinemaTools and Compressor woks fine in the same computer
    Computer configuration
    IMac G5 1.6 with 64VRAM and 768RAM
    thx in advance

    Ok,forgot Color,but and about final cut 6 ? why does not work?
    max resolution 1440x900.
    i was looking the systen requirements on fcp page
    Minimum Requirements to Install All Final Cut Studio Applications
    Final Cut Pro 6
    Macintosh 1.25GHz or faster PowerPC G4, PowerPC G5 = OK
    1GB of RAM = NO,my iMac have 768RAM
    1024-by-768 resolution or higher OK
    Mac OS X v10.4.9 or later OK
    QuickTime 7.1.6 or later OK
    A DVD drive for installation OK
    Can i deduce that problem is because i don't have RAM enought?
    THX

  • SetBackground(Color.WHITE) not working

    I am trying to set background color to white, but it's not working. Can anyone find out the problem?
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.font.FontRenderContext;
    import java.awt.font.LineMetrics;
    import java.awt.font.TextLayout;
    import java.awt.geom.*;
    public class Lab3ex2 {
         * @param args ignored
         public static void main(String[] args) throws IOException {
              // Station[] stations = new Station[100];
              // int n = 0;
              ArrayList<Station> stations = new ArrayList<Station>();
              ArrayList xPos = new ArrayList();
              ArrayList yPos = new ArrayList();
              final String fname = "C://Positions-v2.csv";
              BufferedReader br = new BufferedReader(new FileReader(fname));
              String stationName, item, line;
              line = br.readLine(); // first line skipped
              line = br.readLine(); // 2nd
              while (line != null) {
                   StringTokenizer stoke = new StringTokenizer(line, ",");
                   stationName = stoke.nextToken().trim();
                   item = stoke.nextToken();
                   float x = Float.parseFloat(item);
                   item = stoke.nextToken();
                   float y = Float.parseFloat(item);
                   item = stoke.nextToken();
                   String justification = item;
                   // stations[n] = new Station(stationName, x, y);
                   // n++;
                   stations.add(new Station(stationName, x, y, justification));
                   xPos.add(x);
                   yPos.add(y);
                   line = br.readLine(); // line 3,4,...
              for (Station station : stations) {
                   System.out.println(station);
                   //System.out.printf("%20s %6.1f,%6.1f)%n",station.name, station.x, station.y);
              System.out.print("Press enter...");
              System.in.read();
              JFrame f = new JFrame("Lab3ex2");
              f.add(new MyPanel(stations, xPos, yPos));
              f.setSize(500,400);
              f.setVisible(true);
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // to avoid needing ^C
    class Station {
         public String name;
         public float x;
         public float y;
         public String justification;
         public Station(String name, float x, float y, String justification) {
              this.name = name;
              this.x = x;
              this.y = y;
              this.justification = justification;
         public String toString() {
              // todo: format x and y
              return name + " (" + x + "," + y + ")";
    class MyPanel extends JPanel {
         private ArrayList<Station> stations;
         private float xMax, yMax;
         private ArrayList xPos;
         private ArrayList yPos;
         public void paintComponent(Graphics g) {
              Graphics2D g2 = (Graphics2D)g;
              Dimension dim = getSize();
              float xScale, yScale, scale, x, y, radius = 1.0f, diam;
              String justification = null;
              diam = 2.0f*radius;
              Shape s;
              xScale = dim.width/xMax;
              yScale = dim.height/yMax;
              scale = Math.min(xScale, yScale);
              g2.scale(scale, scale);
              g2.setStroke(new BasicStroke(1.0f/scale)); // thin lines
              g2.setFont(new Font("SanSerif", Font.PLAIN, (int)(11.2f/scale))); // always 12 approx
              int total = 0;
              for (Station st : stations) {
                   if(st.name.length()>total)
                        total = st.name.length();
              for (Station st : stations) {
                   x = st.x - radius;
                   y = st.y - radius;
                   justification = st.justification;
                   s = new Ellipse2D.Float(x, y, 2.0f*radius, 2.0f*radius);
                   g2.draw(s);
                   g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                             RenderingHints.VALUE_ANTIALIAS_ON);
                   if(justification.equals("R"))
                        g2.drawString(st.name, (x-st.name.length())-2, (y+diam));
                   else
                        g2.drawString(st.name, (x+diam+radius), (y+diam));
    GeneralPath theShape = new GeneralPath();
         theShape.moveTo((float)(Float)xPos.get(0), (float)(Float)yPos.get(0));
    for(int i=0; i<15; i++)
         theShape.lineTo((float)(Float)xPos.get(i), (float)(Float)yPos.get(i));
    g2.draw(theShape);
    this.setBackground(Color.WHITE);
         public MyPanel(ArrayList<Station> stations, ArrayList xPos, ArrayList yPos) {
              this.stations = stations;
              this.xPos = xPos;
              this.yPos = yPos;
              xMax = -99999.0f;
              yMax = -99999.0f;
              for (Station st : stations) {
                   if (st.x > xMax) xMax = st.x;
                   if (st.y > yMax) yMax = st.y;
    }

    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.font.FontRenderContext;
    import java.awt.font.LineMetrics;
    import java.awt.font.TextLayout;
    import java.awt.geom.*;
    * Advanced Java Lab 3 ex 2: reading and drawing Met station data
    * @author rallen
    public class Lab3ex2 {
          * @param args
          *            ignored
         public static void main(String[] args) throws IOException {
              // Station[] stations = new Station[100];
              // int n = 0;
              ArrayList<Station> stations = new ArrayList<Station>();
              ArrayList xPos = new ArrayList();
              ArrayList yPos = new ArrayList();
              final String fname = "C://Positions-v2.csv";
              BufferedReader br = new BufferedReader(new FileReader(fname));
              String stationName, item, line;
              line = br.readLine(); // first line skipped
              line = br.readLine(); // 2nd
              while (line != null) {
                   StringTokenizer stoke = new StringTokenizer(line, ",");
                   stationName = stoke.nextToken().trim();
                   item = stoke.nextToken();
                   float x = Float.parseFloat(item);
                   item = stoke.nextToken();
                   float y = Float.parseFloat(item);
                   item = stoke.nextToken();
                   String justification = item;
                   // stations[n] = new Station(stationName, x, y);
                   // n++;
                   stations.add(new Station(stationName, x, y, justification));
                   xPos.add(x);
                   yPos.add(y);
                   line = br.readLine(); // line 3,4,...
              for (Station station : stations) {
                   System.out.println(station);
                   // System.out.printf("%20s %6.1f,%6.1f)%n",station.name, station.x,
                   // station.y);
              System.out.print("Press enter...");
              System.in.read();
              JFrame f = new JFrame("Lab3ex2");
              f.add(new MyPanel(stations, xPos, yPos));
              f.setSize(500, 400);
              f.setVisible(true);
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // to avoid needing ^C
    class Station {
         public String name;
         public float x;
         public float y;
         public String justification;
         public Station(String name, float x, float y, String justification) {
              this.name = name;
              this.x = x;
              this.y = y;
              this.justification = justification;
         public String toString() {
              // todo: format x and y
              return name + " (" + x + "," + y + ")";
    class MyPanel extends JPanel {
         private ArrayList<Station> stations;
         private float xMax, yMax;
         private ArrayList xPos;
         private ArrayList yPos;
         public void paintComponent(Graphics g) {
              super.paintComponent(g);
              this.setLayout(new FlowLayout());
              Graphics2D g2 = (Graphics2D) g;
              Dimension dim = getSize();
              float xScale, yScale, scale, x, y, radius = 1.0f, diam;
              String justification = null;
              diam = 2.0f * radius;
              Shape s;
              xScale = dim.width / xMax;
              yScale = dim.height / yMax;
              scale = Math.min(xScale, yScale);
              g2.scale(scale, scale);
              g2.setStroke(new BasicStroke(1.0f / scale)); // thin lines
              g2.setFont(new Font("SanSerif", Font.PLAIN, (int) (11.2f / scale))); // always
                                                                                                        // 12
                                                                                                        // approx
              int total = 0;
              for (Station st : stations) {
                   if (st.name.length() > total)
                        total = st.name.length();
              for (Station st : stations) {
                   x = st.x - radius;
                   y = st.y - radius;
                   justification = st.justification;
                   s = new Ellipse2D.Float(x, y, 2.0f * radius, 2.0f * radius);
                   g2.draw(s);
                   g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                             RenderingHints.VALUE_ANTIALIAS_ON);
                   if (justification.equals("R")) {
                        g2.drawString(st.name, (x - st.name.length()) - 2, (y + diam));
                   } else {
                        g2.drawString(st.name, (x + diam + radius), (y + diam));
              GeneralPath theShape = new GeneralPath();
              theShape.moveTo((float) (Float) xPos.get(0), (float) (Float) yPos
                        .get(0));
              for (int i = 0; i < 15; i++) {
                   theShape.lineTo((float) (Float) xPos.get(i), (float) (Float) yPos
                             .get(i));
              g2.draw(theShape);
              setOpaque(true);
         public MyPanel(ArrayList<Station> stations, ArrayList xPos, ArrayList yPos) {
              this.stations = stations;
              this.xPos = xPos;
              this.yPos = yPos;
              xMax = -99999.0f;
              yMax = -99999.0f;
              for (Station st : stations) {
                   if (st.x > xMax)
                        xMax = st.x;
                   if (st.y > yMax)
                        yMax = st.y;
              this.setBackground(Color.WHITE);
              this.setVisible(true);
    }Edited by: swapnil_raverkar on Sep 21, 2008 5:10 AM

  • Secondary color correction not working in Premiere CC

    Greetings,
    I'm unable to build secondary color correction masks in Three Way Color Corrector, RGB Curves etc in the current version of Premiere CC.
    In any of these plugins, when I check "show mask" I get the usual white slate filling the frame. But when I use the color picker to make a selection the whole frame stays white. It appears that I'm making selections but it's not building the mask for some reason. When making an extreme color change I can see that the mask is not building as it affects the whole frame.
    This started after upgrading to CC. I've recently updated to the most up to date version (yesterday) and am still having the same problem.
    Premiere CC 2014.1 Release
    8.1.0 (81) Build
    Macbook Pro Retina, 15" Late 2013
    2Gh Intel Core i7
    8Gb
    Intel Iris Pro 1536Mb
    Yosemite Version 10.10
    *note-my Colleague is not having this problem, he's working on the same OS and same CC build but he has an Imac. So I'm guessing this problem is unique to my hardware config.
    Anybody else have this problem or know of a fix?

    I have the same Problem new MAC OS Premier Pro CC or Premier Pro CS6 both have an issue with the Title Tool. If you open the title tool and try to make color changes or change size of the font it sticks at the default color and default font. SOmetimes the title tool will work and then when I exit it's back to the default first type location, default font and default color. Sometimes it will not even let me exit the Title Tool.
    Please help I have Projects I'm working on Deadlines and I pay a monthly Fee for Software that works and it's not working.
    Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          6-Core Intel Xeon
      Processor Speed:          2.4 GHz
      Number of Processors:          2
      Total Number of Cores:          12
      L2 Cache (per Core):          256 KB
      L3 Cache (per Processor):          12 MB
      Memory:          16 GB
    Software  OS X 10.9 (13A603)
    Graphics  ATI Radeon HD 5770 1024 MB

  • Color controls not working correctly

    Why do swatches suddenly not show in the conrol panel? When the object and document are brand new it works, then randomly goes into the stuck mode where if I click on the fill box I get a choice of only no fill or resgistration. I can work around this using the colors panel or color picker, but often the color picker goes haywire too. At that point the file is corrupted and there's no going back. Restarting the program and computer do not help. What's going on?

    As I recall, I had been working with 3 separate images, 2 originally grayscale and 1 RGB, that I had live traced (as above, without placing the image in a new ai file). One of the grayscale images let me use the color picker to change fill color, bu not consistenly, and the other one would let me type in values and changed colors on the picker, but only showed shades of gray in the fill box and in the image. The RGB file wouldn't let me change the fill color using swatches, but I don't remember what I tried with the picker.
    I think I'm going to chalk it all up to my original mistake of not placing the image in a new file, and subsequently trying everything I could think of to work around the original problem.

  • Photoshop color field not working in color picker

    My color field is not working properly in my color picker. How do you fix this?
    WRONG (what my color picking is doing) :
    CORRECT (how it should work) :

    The catchall first step in correction is to reset the tool which, in this case, is the Eyedropper.
    With the Eyedropper chosen, right click here:
    If that doesn't solve the problem, a logical next step would be to reset your Preferences.
    To reset Preferences:
    If Photoshop is already open on your screen, close it (Quit). Then hold down Shift+Ctrl+Alt (Win) / Shift+Command+Option (Mac) on your keyboard and start Photoshop.
    A dialog box will pop up asking if you want to delete the existing Preferences file (the "Settings"). Click Yes in the dialog box. The existing Preferences file will be scrapped and a new one will be created.

  • Color Libraries not working anymore

    Hi,
    I was creating an .acb (adobe color book) file to access my company's colors from the color picker's color libraries section and everything was going well. It was all working, I've been using it for some time, and then I decided to change the name of my library in the coding.
    After that the color libraries stopped working. Not only my color library, but the color library function in Photoshop. Now when I try to access the color libraries section from the color picker, it simply closes the color picker. It doesn't give me any error message. Photoshop doesn't crash or anything, it's only that I can't access the color libraries section.
    I tried removing my .acb file from the \Adobe Photoshop CS2\Presets\Color Books folder, but it didn't solve the problem. The color libraries still won't open.
    Anyone knows a solution to this problem. It's kind of urgent since I need that color library file working for a tool I'm developping for my company.
    Would there be someplace in Photoshop that I could reset Photoshop's color libraries to start from scratch and go back to my old version of the .acb file that was working perfectly, before I changed it's name?
    Right now I'm using Photoshop CS2, I should be switching to Photoshop CS3 soon, but I'd like to have a solution to make sure the same problem doesn't happen on CS3.
    Thanks.

    Hi OldBob,
    Thanks for your reply. Actually, I haven't had to try your solutions because for some reason the problem is fixed now. All I did was modify again the code name of my color books to something else and put them back in the color books folder and it got back to life. It still doesn't explain why the problem wasn't fixed when I deleted them from the folder, so I guess if it happens again I'll try your solutions to see if it helps.
    Thanks!

  • PS CS6 Smartobject - Changing color space not working

    If I initially open a smartobject from ACR into PS CS6 using one color space, eg. sRGB, should it then be possible to click back into ACR and change color space to Adobe RGB ???
    This is important to me, since working most of the time in sRGB, batch editing lot's of files (for timelapse-video, hence sRGB), but sometimes it may be nessecary to go back and use Adobe RGB to make a best possible print of one of the stills.
    This is not working for me. I thought I should be able to do absolutely non-destructive editing when working with smartobjects from ACR, but this may seem to not be the case.
    Ole

    I understand now that a copy of the original RAW file is made when working with SO.
    Still, when checking what color space I am working in (in PS CS6), after changing from sRGB to aRGB, PS still tells me I am working in sRGB!!
    So what I am asking, going back from a SO in PS, into ACR, to change the color space, does not work.
    Is there a workaround for this?
    Or is it something I still do not understand here?

  • Color replacement not working as expected

    Hello -
    I'm touching up some artwork and I've tried using both the color replacement tool as well as the color replacement adjustment and neither is giving me the results I would expect.
    The image has been indexed and I'm not using anti-alias so it's pretty easy to select the colors I want to change and the ones I want to replace them with.
    However, when I try to change the color, it's not replacing it with the exact color that I selected but a lighter version of that color instead.
    I created an example to show what I am talking about.
    In the example I used the color replacement tool.
    First I eyedropped the color I want to put in place of the wrong color.
    Then I use the color replacement tool (mode: color, sampeling: once) and click and drag over the wrong color.
    Instead of matching the color in the foreground (that I had eyedropped) it replaces it with a lighter version of the foreground color.
    I was having the same problem when I was using the replace color adjustment.
    Please see the attached file for my example.
    I was able to get the effect I was looking for by first using mode: color then switching to mode: luminocity and going over the same area a second time.
    It would seem that there should be a way to do it in one pass.
    Any help is appreciated.

    That is the way the color replacement tool works, its an old tool.  Color has three parameters, say hue, saturation and lightness (luminosity) as one parameter set. You would need to change all three for the kind of match you are looking for. The color replacement tool lets you change in one click either Hue, or Saturation, or both of these (Color) or Luminosity. In other words ther is no setting for all three. For that you need two applications of the tool.
    You should try the color range command on a separate layer with a mask to protect those areas of that color you want to keep and see if that fits your needs.
    Paulo

  • Mac v6.1 Bg color picker not working?

    I am new to this application and working through the
    tutorial, and my version is outdated, yea I know, but maybe there
    is something simple I am missing here...
    When I select a table cell and click on the Bg icon to change
    the background color, it brings up the color pallete, I get the
    eyedropper tool, and if I mouseover colors on the screen it shows
    the color code in the window at the top of the color pallete, but I
    am unable to click anywhere on the screen and have it actually grab
    that color....I just get an error chime. I can use the color
    pallete OK, and can even type in the color code manually that I am
    trying to pick up, but geez, that's a pain. Anyone aware if this is
    a known problem or if there is a solution?

    I've confirmed the color picker bug in 10.6.6. I filed a bug report.
    Copy of my report:
    Summary: The color picker dialog reports incorrect values on the RGB slider, using DigitalColor Meter as a reference. On the RGB sliders, the picker can fix itself if you use the spyglass on the test color patch.
    However, the "web safe colors" Color Palette also has problems. The color names do not match the values reported by DigitalColor Meter.
    This is reproducible on both my and my wife's mbp 5,5 13"
    Steps to Reproduce:
    a) for the RGB sliders:
    1) Quit TextEdit if open
    2) Open TextEdit
    3) menu, choose: Format->Fonts->Show Colors
    4) Using RGB sliders, pick Red=50, Blue=0, Green=0 (DO NOT TYPE, USE THE SLIDERS)
    5) open DigitalColor Meter
    6) chose RGB as Actual Value, 8-bit on Digital Color Meter.
    7) Hover over test patch on color picker dialog of textedit.
    b) for the "web safe colors" palette
    1) Quit TextEdit if open
    2) Open TextEdit
    3) menu, choose: Format->Fonts->Show Colors
    4) Using the Color Palettes, choose "web safe colors".
    5) open DigitalColor Meter
    6) chose RGB as Hex Value, 8-bit on DigitalColor Meter
    7) Hover over the selection patches on the color picker dialog of textedit.
    Expected Results:
    for a) the rgb sliders, DigitalColor Meter will report 71,7,8 (instead of 50,0,0)
    for b) looking at color "CCCCCC" DigitalColor Meter reports D4,D4,D4
    Actual Results:
    Regression:
    I am using osx 10.6.6 as is my wife, problem appears on both computers. I first noticed this with the color picker invoked by OmniOutliner Pro 3.9.5, but reproduced with the color picker invoked by TextEdit.
    I have color calibrated my screen with a huey pro, however switch back to the factory profile did not affect the "Expected Results:" shown above.

  • Color Picker Not Working in Develop Module LR 6

    All color pickers in the Book, Slideshow, Print and Web Modules work by clicking in the color picker and dragging to the image then releasing the mouse over the color wanted.  However, I am not able to get this to work in the Develop Module. 
    How can I get the color picker to work in the Develop Module?

    I tried UNchecking Use Graphics Processor, and the color picker worked normally.
    In addition, it appears the turning the GPU off increased the speed of paint strokes!

  • Color picker not working in Premiere CC running 10.9 Mavericks

    Im not able to use the color picker for text and even the color picker for ultra keys. When i want to select a color i want to use the cursor change to a text cursor. Please help asap. Thanks !!

    I have the same Problem new MAC OS Premier Pro CC or Premier Pro CS6 both have an issue with the Title Tool. If you open the title tool and try to make color changes or change size of the font it sticks at the default color and default font. SOmetimes the title tool will work and then when I exit it's back to the default first type location, default font and default color. Sometimes it will not even let me exit the Title Tool.
    Please help I have Projects I'm working on Deadlines and I pay a monthly Fee for Software that works and it's not working.
    Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          6-Core Intel Xeon
      Processor Speed:          2.4 GHz
      Number of Processors:          2
      Total Number of Cores:          12
      L2 Cache (per Core):          256 KB
      L3 Cache (per Processor):          12 MB
      Memory:          16 GB
    Software  OS X 10.9 (13A603)
    Graphics  ATI Radeon HD 5770 1024 MB

  • Why hyperlink color change not working with Safari?

    With several sites I visit when I click on their text link lists I see a colored symbol change to let remind me I visited that site. Unfortunately this only works when I use Firefox or IE, not Safari. Is there a reason this does not work with Safari? Is there anything I can do? thanks.
    Safari 3.2.1

    Hi ..
    YouTube content requires Flash.
    Open System Preferences > Flash Player then select the Advanced tab.
    Click Delete All under Browsing Data and Settings
    Not empty the Safari cache.
    From your Safari menu bar click Safari > Preferences then select the Advanced tab.
    Select:  Show Develop menu in menu bar
    Now click Develop from the menu bar. From the drop down menu click Empty Caches.
    Now try a video. If you still have problems, try troubleshooting Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

Maybe you are looking for

  • Attachments embedding in mail

    How do I stop attachments embedding in mail?

  • Fault handling in DIServer Interact

    Good Day Mentors, I'm currently testing out how the DIServer works. Now, I am testing Fault handling with the DI Server, and would want to know if there is a way to get multiple Errors from an DI Server Interact call. My test scenario was adding 2 Sa

  • How to get Customer Credit & Overdue balances?

    Hi All, We need to retrieve Customer account balances data from SAP and pass that data to another third-party system. We have to create either a Custom Report or a Custom BAPI for this. The required values are 'Credit Balance' and 'Overdue Balance' f

  • [SOLVED] Default applications, Econnman, and Broken Audio.

    I have recently installed Arch Linux, and I need quite a bit of help. I need econnman, seeing as how I chose to use enlightenment17, but "sudo pacman -S econnman" doesn't work, as it says it can't find the package. Also, audio is not working. Need so

  • Master load data issue

    Hi Gurus, I was doing full load to 0material. It looks to me  attribute profit center of 0material is wiped out. As per my knowledge if multiple full load jobs are running it should do over write but the attribute value is wiped out. Any clue ?   Tha