Changing JCheckbox's foreground color..

Hi Guys...
I want to change the foreground color of the checkmark that appears in the jcheckbox when it is checked.. Is this possible to do? I have read problems with the disabled background color... But I have not found anything on how to change the foreground color of the checkmark when its checked... I tried doing "setForeground(Color.red)" but it does not work..... Thanks alot in Advance...

I tried the change color when selected, it doesn't seem to work. However, you can change the icons used on a JCheckbox, the appended code does just that, it uses a collection of CD Player icons for the example, but you could draw or load anything you want. You might also find the CD icons useful for other purposes.
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
class TestChk extends JFrame
     Container cp;
     JCheckBox c2;
     TestChk()
          cp = getContentPane();
          addWindowListener(new WindowAdapter()
          {public void windowClosing(WindowEvent evt){System.exit(0);}});
         JCheckBox cb = new JCheckBox();
         CdIcon ic = new CdIcon(CdIcon.CdiStop,16,16,Color.BLACK);
         cb.setIcon(ic);
          CdIcon sic = new CdIcon(CdIcon.CdiPlay,16,16,Color.RED);
          cb.setSelectedIcon(sic);
          JPanel p = new JPanel();
          p.add(cb);
          cp.add(cb,BorderLayout.NORTH);
          pack();
     static public void main(String[] args){new TestChk().show();}
class CdIcon implements Icon
     public static final int CdiStop = 0;
     public static final int CdiPlay = 1;
     public static final int CdiPause = 2;
     public static final int CdiRewind = 3;
     public static final int CdiFastBack = 4;
     public static final int CdiFastForward = 5;
     int type;
     int height, width;
     int iheight, iwidth;
     int left, top;
     Color clr;
     CdIcon(int t, int h, int w, Color c)
          type = t;
          height = h;
          width = w;
          iheight = (int)(.75*(float)height);
          iwidth = (int)(.75*(float)width);
          top = (int)(.125*(float)height);
          left = (int)(.125*(float)width);
          clr = c;
     public int getIconWidth(){return width;}
     public int getIconHeight(){return height;}
     public void paintIcon(Component c, Graphics g, int x, int y)
          int itop, ileft;
          itop = y + top;
          ileft = x + left;
          int[] xp;
          int[] yp;
          int xd;
          if(c.isEnabled())g.setColor(clr);
          else g.setColor(Color.gray);
          switch(type)
               case CdiStop:
                    g.fillRect(ileft,itop,iwidth,iheight);
                    break;
               case CdiPlay:
                    xp = new int[]{ileft,ileft+iwidth,ileft};
                    yp = new int[]{itop,(itop+(iheight/2)),itop+iheight};
                    g.fillPolygon(xp,yp,3);
                    break;
               case CdiPause:
                    xd = iwidth /4;
                    g.fillRect(ileft,itop,xd,iheight);
                    g.fillRect(ileft+iwidth-xd,itop,xd,iheight);
                    break;
               case CdiFastForward:
                    xd = iwidth /2;
                    xp =new int[]{ileft,ileft+xd,ileft};
                    yp =new int[]{itop,(itop+(iheight/2)),itop+iheight};
                    g.fillPolygon(xp,yp,3);
                    xp =new int[]{ileft+xd,ileft+xd+xd,ileft+xd};
                    g.fillPolygon(xp,yp,3);
                    break;
               case CdiFastBack:
                    xd = iwidth /2;
                    xp =new int[]{ileft+xd,ileft,ileft+xd};
                    yp =new int[]{itop,(itop+(iheight/2)),itop+iheight};
                    g.fillPolygon(xp,yp,3);
                    xp =new int[]{ileft+xd+xd,ileft+xd,ileft+xd+xd};
                    g.fillPolygon(xp,yp,3);
                    break;
               case CdiRewind:
                    int xm = iwidth/8;
                    int xleft = ileft+xm;
                    xd = (iwidth-xm)/2;
                    g.fillRect(ileft,itop,xm,iheight);
                    xp =new int[]{xleft+xd,xleft,xleft+xd};
                    yp =new int[]{itop,(itop+(iheight/2)),itop+iheight};
                    g.fillPolygon(xp,yp,3);
                    xp =new int[]{xleft+xd+xd,xleft+xd,xleft+xd+xd};
                    g.fillPolygon(xp,yp,3);
                    break;
               default:
                    g.drawRect(ileft,itop,iwidth,iheight);
                    break;
}

Similar Messages

  • Changing the disabled foreground color of a disabled JList

    I am using a JList inside JScrollPane. If the list is disabled the foreground color of list changes to grey. How can I change this disabled foreground color.
    regards,
    nirvan.

    Well, a JList uses a JLabel as the default renderer. So you can try using the UIManager to set the "Label.disabledForeground" color to whatever you want. Of course this will also affect disabled labels.
    Or, you can create a custom renderer for the list and control the disabled color in the renderer.

  • Can I change the back/foreground color of a disabled JComboBox?

    I need to change the color of the text or the background for a disabled JComboBox. My users would like to be able to see the data better even though they can't alter it.

    I see i have to create a ComboBoxUI, but have no idea how to start a simple one.Then start with an existing one.
    a) look at the source code for BasicComboBoxUI
    b) find the occurences of 'disabledBackground' and 'disabledForeground' to give you an idea of where to make your changes and then override those methods
    Thats the easy part. If you run this [url http://www.discoverteenergy.com/files/ShowUIDefaults.java]program you will notice that the Metal LAF uses the      javax.swing.plaf.metal.MetalComboBoxUI class and the Windows LAF uses the com.sun.java.swing.plaf.windows.WindowsComboBoxUI class. So if you need to support both LAFs then you would need to override both classes and tell the LAF Manager which class to use. I don't know how to do this.

  • Changing JCheckBox default color when disabled

    I am using JCheckBoxes to serve as a checklist providing feedback to the user on how far through a sequence of events the program has progressed. I do not want the user to be abel to check the boxes himself.
    I currently am using JCheckBox.setEnabled(false) to keep the user for ticking the boxes. Unfortunately this changes the foreground color from black (readable) to gray (unreadable). setForeground has no effect.
    So I have two questions:
    1. Is there a better way to secure JCheckBoxes from the user?
    2. If not is there a way to alter the default disabled color for specific CheckBoxes?

    hopefully there's a better way than this
    (the checkBoxIcon code is just to do with the tick)
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.plaf.metal.*;
    class Testing extends JFrame
      public Testing()
        UIManager.put("CheckBox.disabledText",Color.BLACK);
        setLocation(400,300);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        JCheckBox cbx = new JCheckBox("Disabled",new CheckBoxIcon(),true);
        getContentPane().add(cbx,BorderLayout.NORTH);
        getContentPane().add(new JCheckBox("Enabled",true),BorderLayout.SOUTH);
        pack();
        cbx.setEnabled(false);
      public static void main(String[] args){new Testing().setVisible(true);}
    class CheckBoxIcon implements Icon
      protected int getControlSize() { return 13; }
      private void paintOceanIcon(Component c, Graphics g, int x, int y)
        ButtonModel model = ((JCheckBox)c).getModel();
        g.translate(x, y);
        int w = getIconWidth();
        int h = getIconHeight();
        if (model.isPressed() && model.isArmed())
          g.setColor(MetalLookAndFeel.getControlShadow());
          g.fillRect(0, 0, w, h);
          g.setColor(MetalLookAndFeel.getControlDarkShadow());
          g.fillRect(0, 0, w, 2);
          g.fillRect(0, 2, 2, h - 2);
          g.fillRect(w - 1, 1, 1, h - 1);
          g.fillRect(1, h - 1, w - 2, 1);
        g.setColor( MetalLookAndFeel.getControlInfo() );
        g.translate(-x, -y);
        if (model.isSelected())
          drawCheck(c,g,x,y);
      public void paintIcon(Component c, Graphics g, int x, int y)
        ButtonModel model = ((JCheckBox)c).getModel();
        int controlSize = getControlSize();
        if (model.isPressed() && model.isArmed())
          g.setColor( MetalLookAndFeel.getControlShadow() );
          g.fillRect( x, y, controlSize-1, controlSize-1);
          drawPressed3DBorder(g, x, y, controlSize, controlSize);
        else
          drawFlush3DBorder(g, x, y, controlSize, controlSize);
        g.setColor( MetalLookAndFeel.getControlInfo() );
        if (model.isSelected())
          drawCheck(c,g,x,y);
      private void drawFlush3DBorder(Graphics g, int x, int y, int w, int h)
        g.translate(x, y);
        g.setColor(MetalLookAndFeel.getControlDarkShadow());
        g.drawRect(0, 0, w-2, h-2);
        g.setColor(MetalLookAndFeel.getControlHighlight());
        g.drawRect(1, 1, w-2, h-2);
        g.setColor(MetalLookAndFeel.getControl());
        g.drawLine(0, h-1, 1, h-2);
        g.drawLine(w-1, 0, w-2, 1);
        g.translate(-x, -y);
      private void drawPressed3DBorder(Graphics g, int x, int y, int w, int h)
        g.translate(x, y);
        drawFlush3DBorder(g, 0, 0, w, h);
        g.setColor(MetalLookAndFeel.getControlShadow());
        g.drawLine(1, 1, 1, h-2);
        g.drawLine(1, 1, w-2, 1);
        g.translate(-x, -y);
      protected void drawCheck(Component c, Graphics g, int x, int y)
        int controlSize = getControlSize();
        g.fillRect( x+3, y+5, 2, controlSize-8 );
        g.drawLine( x+(controlSize-4), y+3, x+5, y+(controlSize-6) );
        g.drawLine( x+(controlSize-4), y+4, x+5, y+(controlSize-5) );
      public int getIconWidth() {return getControlSize();}
      public int getIconHeight() {return getControlSize();}
    }

  • Is there a way to disallow web pages to modify foreground color of elements if background of those elements was not changed as well (and vice versa)?

    I have very sensible defaults for my display; i.e. I have dark GTK scheme (dark gray background, light gray text) that suits me way more when working on my computer while it's dark around. I, however, like looking at web pages as how they were mean to be seen. Unfortunately, most of web designers don't think about anyone having non-default colors set up.
    Example one ( http://www.cedok.cz ):
    This site's CSS style has "color: rgb(45, 45, 45);" for the whole <body> but for <select> elements there is no "background-color" set. This means there is a select box rendered with dark gray background and dark gray foreground (text color). This is pretty badly readable (obviously).
    To mention one particular element from this site: e.g. <select id="ctl00_ContentPlaceHolderLevySloupec_HledaniMultiTab1_HledaniZajezdu1_ddlTypZajezdu">
    Example two ( https://support.mozilla.org/en-US/questions/new/desktop/customize/form ):
    On this page (where I'm currently filling in this question) the <textarea id="id_content"> has "background: ... rgb(255, 255, 255);" set, but with my default font color, this textarea is rendered as light gray text on a white background. Again, pretty unreadable (and eye-hurting).
    I can provide screenshots and more reasoning if needed.
    I'm asking if there is (or might be) an option (even disabled by default) or at least an add-on which would keep default colors unless both foreground and background colors were specified. I think this might make Firefox very usable for many people which like to have their default colors configured.
    In case you won't be able to help me by fixing this, could you redirect me to the right place where I could get this requested in a way that might be really possible to happen (bugzilla?).
    Thank you very much in advance.

    Thanks for the reply, but I'm sorry, no. I don't want any addon that customizes colors, I want to use default colors and only prohibit changing them unless both background and foreground colors are changed.
    I have made no color changes WRT to Firefox *only*, I just changed the default for the whole toolkit (gtk in this case). The thing I need is to disable changing *only one* property out of two ({back,fore}ground). Whenever the second one gets set as well, this new setting (both of them) may get reflected, but not before that. It'd be nice to keep this when changing the colors back (deleting the style), but that's not necessary.
    I hope that's understandable, feel free to ask for if that's not the case.
    To express what I mean a bit more precisely, see the attached image. In that image there are four textareas (one of the elements that gets affected by this). First one is a default one (which I want to have if the page has nothing set), the second one is nicely modified to fit for example to a blue-ish page (this one I like as well).
    Second row of textareas shows how the final element looks like if the page has only one of these elements set up. First one changes background without changing font color, the second one vice versa. Both of them are very badly readable, especially with low lighting around.
    This is consequently the same case when it comes to default page background which I cannot set at all, because too many pages have only "color:" set without changed background and that is completely messed up then. Going to extremes, I might mention all color-related modifications (see how ugly the borders look when the background is changed and nothing is done to these borders, their size and color is kept default), but I understand that's too much.

  • Foreground color change from inside a class

    Hey,
    For a project I'm working on, I wrote a class that extends awt.Label. In this new class, I had to override the paramString() method to return what I wanted it to. This all works great. What I was wondering, is whether or not it was possible to change the foreGround color of the label from inside the class decleration. I was thinking maybe whenever the paramString() method was called. Any help would be appreciated.
    Thanks,
    Jarrod

    Gday,
    I you use the mothed setForeground(Color c) it should set the foreground colour (color for you Americans) to what you would like.
    see for more info
    http://java.sun.com/j2se/1.3/docs/api/java/awt/Component.html#setForeground(java.awt.Color)
    or
    http://java.sun.com/j2se/1.4/docs/api/java/awt/Component.html#setForeground(java.awt.Color)
    if you have jdk1.4
    You dont need to make this method in your class just call it when you want. ie
    setForground(Color.RED);
    or
    Color c = new Color(255, 0, 0);
    setForeground(c);
    Good luck,
    Jack 573

  • Cant change color on visited sites without changing background /foreground colors that hide options on the sitec

    I want to change the color of visited sites, but am forced to set background and foreground colors which don't properly
    show all of the colors for controls etc on many websites.
    I have to uncheck the button to Allow pages to choose their own colors....
    Google is a good example after doing a search, then change visited sites color, uncheck the allow pages button and then you can't see the search button and most of the options in the top right corner in google.
    I am a little color blind, so can't differentiate blue and purple for links on visited sites...
    thx

    I think the problem is that many sites use background colors to create buttons, so you lose that when you override the page's colors.
    Maybe you could use an add-on to fine-tune colors instead of Firefox's all-or-nothing setting. I found a couple extensions that say they can change page colors, but I haven't tried them myself:
    * [https://addons.mozilla.org/firefox/addon/color-that-site/ Color That Site!]
    * [https://addons.mozilla.org/firefox/addon/colorific-1/ Colorific]
    * [https://addons.mozilla.org/firefox/addon/toggledocumentcolors-198916/ ToggleDocumentColors_]
    * [https://addons.mozilla.org/firefox/addon/color-toggle/ Color toggle]
    For a truly custom approach to link colors, there are two general purpose ways to apply your own style rules to specific sites: the Stylish extension and a userContent.css files. You would need to set a preferred text ''and'' background color for visited and unvisited links so that you are guaranteed to be able to read the text.
    Hope one of these fits the bill!

  • Changing the foreground color ......

    I don't want the viewer to change the text, so I did
    setEnabled(false);
    on my JTextArea.... but then my text color stays at gray no matter what foreground color I give it.
    Is there anyway to overwrite this?
    Thanks!!

    call setaEditable( false ), that won't disable it just make it un-editable.

  • How do I add "change background/foreground color" to the configurator, and color buttons?

    How do I add "change background color" and "change foreground color" in the configurator?
    Also is there a way to color buttons?
    Regards,
    Glen

    No matter whether you mean the application Configurator or a Panel created with Configurator you would probably do well to post the question on the Configurator Forum.
    Configurator

  • Changing foreground color

    I created a pre-block trigger with the following code to change
    the color of the text to red in instances when the value is less
    than zero. Unfortunately is does not work. Can anyone see what
    I am doing wrong here?
    DECLARE
    v_color varchar2(4) := 'R100';
    BEGIN
    IF :tbl_sales.points < 0 THEN
    set_item_property('tbl_sales.points',
    foreground_color, v_color);
    END IF;
    END;
    Thanks in Advance,
    JS
    Title : re:Changing foreground color O/S : MS Windows
    Author : Grant Ronald Type : Question
    Date : Jan 7, 2002 06:48 PT
    POST :REPLY (W/QUOTE)
    Color is an RGB value - so specify the full color value.
    DECLARE
    v_color varchar2(8) := 'r100g0b0';
    BEGIN
    IF :emp.sal <100 THEN
    message ('doing it');
    set_item_property('emp.sal',
    foreground_color, v_color);
    END IF;
    END;
    Regards
    Grant Ronald
    Forms Product management
    Title : re:re:Changing foreground color O/S : MS Windows
    Author : Jeff Starr Type : Question
    Date : Jan 7, 2002 07:00 PT
    POST :REPLY (W/QUOTE)
    I made the changes suggested but without sucess-- perhaps it is
    the type of trigger I am using?? I've tested using several
    different triggers without success. Now I am totally perplexed.
    JS

    First rule of debugging - keep it simple!!
    You'll notice I based this on the EMP table (keep it simple).
    I added a message line so I knew the code was being executed
    (simple).
    And I added the code in a "Key Print" trigger (fired when you
    select print from the default menu.
    It works.
    Try it with a new form and do the steps above.
    Grant

  • How to set disabled foreground color of JCheckBox?

    How do I set the disabled foreground color of JCheckBox? To clarify, I want to choose the color that is used to paint the component's foreground when it is disabled.
    thanks.

    Check out this thread:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=122112

  • Disabled foreground color in JComboBox

    what's the correct way to set the disabled foreground color of a jcombobox? i don't want to set the disabled color for the entire ui to the same color, but for one jcombobox specifically. i searched the web and found many posts with the same question, but no real solution. this one has been giving me nightmares and i thought i'd share what i've found. the solution seems to be quite simple: wrap the combobox label in a panel. that way the panel gets the disabled colors, but the coloring of the label of the combobox remains. here's the solution in short in case others need it:
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListCellRenderer;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.ListCellRenderer;
    public class MyComboBox extends JComboBox {
      public MyComboBox() {
        super();
        setRenderer( new ColorCellRenderer());
      public static void main(String s[]) {
        JFrame frame = new JFrame("ComboBox Example");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        final JComboBox cb = new MyComboBox();
        cb.addItem( "ComboBox Item 1");
        cb.addItem( "ComboBox Item 2");
        cb.addItem( "ComboBox Item 3");
        cb.setForeground( Color.blue);
        final JButton bt = new JButton ("disable");
        bt.addActionListener( new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            cb.setEnabled( !cb.isEnabled());
            if( !cb.isEnabled()) {
              cb.setForeground( Color.red);
              bt.setText( "enable");
            } else {
              cb.setForeground( Color.blue);
              bt.setText( "disable");
        frame.getContentPane().setLayout( new FlowLayout());
        frame.getContentPane().add( bt);
        frame.getContentPane().add( cb);
        frame.pack();
        frame.setVisible(true);
      class ColorCellRenderer implements ListCellRenderer {
        protected DefaultListCellRenderer defaultRenderer = new DefaultListCellRenderer();
        public Component getListCellRendererComponent(JList list, Object value,
            int index, boolean isSelected, boolean cellHasFocus) {
          JLabel label = (JLabel) defaultRenderer
              .getListCellRendererComponent(list, value, index,
                  isSelected, cellHasFocus);
          JPanel wrapper = new JPanel();
          wrapper.setLayout( new BorderLayout());
          wrapper.add( label, BorderLayout.CENTER);
          return wrapper;
    }if anyone knows a way to remove the dropdown button of a disabled combobox without leaving a blank space when you simply hide the button, feel free to extend this :-)
    Edited by: Lofi on Mar 20, 2010 10:46 PM

    i thought i'd share what i've found. the solution seems to be quite simple: wrap the combobox label in a panel.Brilliant! I'm sure this will be useful to others who find this solution here.
    Your code does have some unnecessary overheads though, like constructing a new JPanel in every call to getListCellRendererComponent, and holding a separate renderer as a field. I've attempted to clean it up for brevity and efficiency.import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListCellRenderer;
    import javax.swing.JCheckBox;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class DisabledForegroundListCellRenderer extends DefaultListCellRenderer {
      private final JPanel wrapper = new JPanel(new BorderLayout());
      public DisabledForegroundListCellRenderer() {
        wrapper.add(this);
      @Override
      public Component getListCellRendererComponent(JList list, Object value,
              int index, boolean isSelected, boolean cellHasFocus) {
        super.getListCellRendererComponent(list, value,
                index, isSelected, cellHasFocus);
        return wrapper;
      // Test rig
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            new DisabledForegroundListCellRenderer().makeUI();
      public void makeUI() {
        String[] data = {"One", "Two", "Three"};
        final JComboBox combo = new JComboBox(data);
        combo.setRenderer(new DisabledForegroundListCellRenderer());
        final JCheckBox check = new JCheckBox("Combo enabled");
        check.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            boolean selected = check.isSelected();
            combo.setForeground(selected ? Color.BLUE : Color.RED);
            combo.setEnabled(selected);
        check.doClick();
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocationRelativeTo(null);
        frame.add(check, BorderLayout.NORTH);
        frame.add(combo, BorderLayout.SOUTH);
        frame.pack();
        frame.setVisible(true);
    }I've also changed the class name, as to me "ColorCellRenderer" would rather imply something that renders either the foreground or the background (or both) on the basis of the value parameter.
    if anyone knows a way to remove the dropdown button of a disabled combobox without leaving a blank space when you simply hide the buttonThat would require a custom UI delegate, not a custom renderer. And really, I wouldn't bother -- I would just use a JComboBox and a disabled (or maybe uneditable) JTextField, held in a CardLayout, and swap them instead of disabling the combo.
    Shall take a look at how the combo UIs reserve space for the button though :)
    luck, db
    Edited by: DarrylBurke -- changed wrapper to private final, it shouldn't be static

  • Changing font and background color for all components

    Hi,
    This is my first time writing a GUI, and I'm pretty new to Swing and Java. I just recently switched from C++, and so far Java seems to be doing a nice job =)
    Currently I have a gazilion components (textfields, labels, panels) and I'm wondering if there is a way to change their background/foreground colours without adding in setBackground/setForeground for every single component.
    I've done some researching onto using Look and Feel, but there aren't any current ones that suits my needs. And everyone seems to mention that programming your own is pretty complicated.
    My boss wants a slick white text on black background interface, so you can imagine that he's not very impressed with the current default greyish colours =)
    Thank you for any help!
    Cindy

    Hi Cindy,
    I'm not sure how effective a solution this will be, but you could try:UIManager.put("TextField.background", Color.BLACK); // Default text field background becomes blackThere are many more defaults you'd have to change and could probably achieve it more reliably and simply by creating or editing the properties file that controls the way the look and feel (even if it's the default) is implemented. Take a look at:
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/UIManager.htmlHope this is helpful
    Chris.

  • Foreground color of a disabled component

    How do i change foreground/text color of a disabled component? Something similar to JTextComponent's setDisabledTextColor().

    I'm not exactly sure but I think this is highly component dependent and even look & feel dependent. Sometimes, there isn't even a such color defined anywhere. The component's ui just takes the current foreground color and calls brighter on it.
    You'll have to be more specific on the component you wish to modify.

  • Foreground color turns grey

    Hello
    I am just learning Photoshop CS4 on a Mac.
    I selected a color, expecting the foreground color to change to that color so I could fill a an area. I found that the foreground color changed to grey. Whatever I tried it just went grey. Could someone tell me what is happening here. I am doing something wrong but I have no idea what it is.
    Thanks for any help with this.

    Image menu->Image mode->RGB color
    You appear to be in grayscale mode now.

Maybe you are looking for

  • Move complete library to external hard drive

    Hi I need urgent help! I would like to move my complete library (6'000 pictures) with the complete projects structure and all keywords and rating etc. to an external hard drive in order that when I start aperture, my present projects structure will b

  • T440p n5321 GPS not working

    Hello, I just upgraded my T440p with an Ericsson N5321gw  mobile broadband card. Unfortunaltely the build in GPS module doesn't deliver any data. The driver is correctly installed (visible in the Device Manager) and the firmware is updated. When I ru

  • Calendar fetchxml

    Hi, i need to get the start date and end date of each quarter from calendar entity in FetchXML,because the settings of CRM : Year any idea ? Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • I have a grid covering images when I open them, how do I remove it?

    So recently when messing around with photoshop cs6 i accidenlty hit a few buttons I guess I shoudn't have and this happened I have tried everything to my knowedge to try get it away but it won't go away, the repeatitive lines make it hard for me to f

  • ACR camera profile and 5d2

    Noticed that the ACR profile is not available for my 5d2 images, not in the list at all. I've always had the odd image where it was the best fit, not a big deal, but wondering why it's gone. It's still there for 40d captures.