My color white is not white its tan?

I just got adobe photoshop CS3 Extended and when i open a new page or anything the color white looks like a tan color....it says its white #ffffff, but shows up as a tan color in my window??? when i save it and look at in another program its the color white...
How do i fix this< sorry im new to photoshop and just started learning it.

Try some of these fixes posted by participant ds store.
https://discussions.apple.com/docs/DOC-3353

Similar Messages

  • 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

  • The fan of my macbook(white) seems not working its 000rpm, what will i do? a prompt says that i need to shutdown my laptop.. help please

    the fan of my macbook(white) seems not working its 000rpm, what will i do? a prompt says that i need to shutdown my laptop.. somebody help please huhuhu!

    so the fan might be broken? huhuhu ok i'll just take it to the service center

  • Since version CS6 (also CC) is not using the "change color" white border

    Hello,
    send you then added a small bug, but the user can very fooled.
    Since version CS6 (also CC) is not using the "change color" white border
    bounded by the selected color. In CS5 it worked correctly.
    More video from here: http://screenr.com/xZxH
    Regards
    Aleš Ulrych

    Hello Mr. Zimmermann,
    thanks for the response. I put it here so that this is a small mistake and knew someday be repaired. I personally find this more troubling issue that I have reported in version CS6: http://forums.adobe.com/thread/1246261?tstart=30
    But I still hope it will be corrected in the future.
    Yours
    Aleš Ulrych

  • How can I select and delete the fill color (white background) of a live trace (B&W) with in an actio

    How can I select and delete the fill color (white background) of a live trace (B&W) with in an action set?
    Illustrator CS4 in windows XP.

    Maybe Li[ve trace] is not t]he way[ to go
    I have some suggestion one leave it as is and use a blending mode of multiply to give it a color background like this
    leave it as is make it a grayscale tiff import int Illustrator and color it it in Illustrator like this
    Or trace over it with the brush tool aand then give it a color ground.
    Or do the original over and do a cleaner job with no tone or a minimum of tone. Then Live trace.

  • Command Click in edit changes color white balance and tint in edit

    Command Click in edit changes color white balance and tint in edit, what is happening?

    robwouds:
    Welcome to the Apple Discussions. Must be a hidden keyboard combination for temperature and tint. Not sure if the user can set different settings of each that the keystrokes will take you thru. Just hit the reset button in the Adjust pane to get it back to normal.
    Do you Twango?

  • JScrollPane.setBackground(Color.white);

    Hi @all,
    I want to make the BackgroundColor of my JScrollPane white. Does anybody know, why this little piece of code doesn?t do anything?
    I can compile it, but then the background is still grey.
    JLabel pic = new JLabel(new ImageIcon("dile_logo.jpg"));
    JScrollPane sp = new JScrollPane(pic, JScrollPane.VERTICAL_SCROLLBAR_NEVER,
    JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    sp.setBackground(Color.white);          
    add(sp);
    thank you
    Juergen

    I tried:
    sp.setOpaque(true);
    and also:
    pic.setBackground(Color.white);
    but both does not change anything.
    @vaskol
    I have a picture that is smaller than the window and also as the scrollpane. So I do not have ScrollBars.
    The background of the picture is white and the rest of the window is grey and I want to change that to white.
    I do not understand what you mean with "that square in the corner" and also this part of your explication.
    Sorry
    Juergen

  • Xperia z2 color WHITE it is true it easily stain the color??

    I have z1 color black. But I planning to buy xperia z2 color white. But i see some video in YouTube it say it easily stain the color white?? It is true?
    Solved!
    Go to Solution.

    [email protected] wrote:
    I have z1 color black. But I planning to buy xperia z2 color white. But i see some video in YouTube it say it easily stain the color white?? It is true?
    It definitely true. A little wash should remove the stain. The only reason this happens is because of the injection molding used around the aluminium frame. 
    It happens on all the devices but it's not noticeable on the darker colours.

  • Hp laserjet 100 color mfp m175nw not working anymore – MAC OSX YOSEMITE

    After installing the YOSEMITE update my hp laserjet 100 color mfp m175nw not printing anymore. Connection is USB. And OSX Drivers are all up-to-dae. Also i heared similar problems with other printers than HP.
    Any help? Thanks alot.

    Hi @Ankanb ,
    I understand that you are having issues since the Apple Security Update was done on the computer, after  uninstalling and reinstalling the software, you can't find the printer now.  I would be happy to help you.
    I have provided some steps to try, to see if we get the printer working again over the network.
    Print a Configuration page to see if the printer still has a valid IPv4 address.
    Printing a Configuration Report.
    If you have a valid IPv4 address for the printer then try and access the Embedded Web Server for the printer.
    Type the IP address into your web browser's address bar. (Safari)
    Did it load the webpage?
    Repair the Disk Permissions on the Mac:
    Close all applications.
    On the Apple menu bar, click Go, click Applications and then click Utilities.
    Double-click Disk Utility.
    Highlight your hard drive/partition on the left.
    Click Verify and then Repair Disk Permissions.
    Restart the computer..
    Reset the Printing System:
    Note: This will remove all printers in the print and Fax/Scan, any printer removed can be re-added later by clicking the plus (+) symbol.
    Click the Apple icon and then click System Preferences.
    Click Printers & Scanners.
    Right-click (or Ctrl +click) in the left white side panel, then click Reset printing system.
    Click OK to confirm the reset.
    Type the correct Name and Password.
    Click OK to reset the printing system.
    Then click the + sign to add the driver, highlight the printer. (you might have to click the drop down to select the printer's name) Then click on the Add button.
    If you are having network issues, then add the printer through the IP Protocol.
    After clicking the + button, select the IP icon across the top, type in the printer's IP address, select jet direct below and then Apply. (you won't be able to scan but you will be able to print, this way we will know if it is a Multicasting issue, if the Mac sees the printer)
    If the Multicasting is turned off on the router, you won't be able to add the printer as a bonjour device.
    Test the printer.
    How is the printer connected?  (Ethernet/Wireless)
    If there is anything else I can help you with, just let me know.
    Have a nice weekend!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Scanning conflict   Acrobat 9 pro   "Color Format Selected Not Supported"

    I have had several conflicts with Adobe Acrobat 9 and my HP C5180 printer/scanner/copier.   I have downloaded new drivers from HP.   When I try to create  a PDF from the scanner,  I get this conflict warning:   "Color Format Selected Not supported".    So, I change the color format selections in both HP and Acrobat and I still get the warning.    I must admit I haven't tried the black and white color format.  But I want to scan simple color images.  No luck.  
    Has anyone else had such a problem?

    This may have nothing to do with your problem, but -- at least with Acrobat 8, there is a 100MB limit to the scanned image. Are you trying to scan something larger than that?

  • Works in FF and not like its supposed to in IE

    Im having trouble with created unordered list. In FF everything works fine but when i preview it in IE links in the list are not in a same row as their assigned circles, squares or whatever i use for bulleting!!! Thnx for help in advance!!!

    Im learning html/css atm so here´s the code.
    css code:
    body {
    font-family: Verdana;
    background-color: #e2edff;
    line-height: 125%;
    padding: 15px;
    li {
    font-size: small;
    h1 {
    font-size: x-large;
    font-weight: bold;
    h2 {
    font-size: medium;
    font-weight: normal;
    #tagline p {
    font-style: italic;
    font-family: Georgia, Times, serif;
    h1,h2, h3 {
    font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
    background-color: blue;
    color: white;
    a {
    font-weight: bold;
    color: black;
    font-size: large;
    .fun {
    color: #339999;
    font-family: Georgia, Times, serif;
    letter-spacing: 0.05em;
    And this is html code of index page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Bubble Under - The diving club for the south-west
    UK &trade;</title>
    <meta http-equiv="Content-Type"
    content="text/html; charset=utf-8" />
    <link href="styles.css" rel=stylesheet type="text/css"/>
    </head>
    <body>
    <div id="header">
    <div id="sitebranding">
    <h1>BubbleUnder.com</h1>
    </div>
    <div id="tagline">
    <p>Diving club for the <span style="color: blue; font-weight: bold;"> south-west UK</span> - let's make a
    splash!</p>
    </div>
    </div> <!-- end of header div -->
    <div id="bodycontent">
    <h2>Welcome to our super-dooper Scuba site</h2>
    <p><img src="DSC00763.jpg"
    alt="A circle of divers practice their skills"
    width="600" height="162" /></p>
    <p style="color: red; font-weight: bold;">Glad you could drop in and share some air with us! You've
    passed your underwater navigation skills and
    successfully found your way to the start point - or in
    this case, our home page.</p>
    <p class="fun">A man walks into a bar; you would've thought he'd
    see it coming!</p>
    </div> <!-- end of bodycontent div -->
    <ul type="square">
    <li><a href="about us.html">About us
    <li><a href="Contact us.html">Contact us
    </ul>
    </body>
    </html>

  • Color Scheme Updates Not Working

    Color schemeing is hugely helpful for me. I recently migrated from a Win7 machine to a Mac and have been trying to change the color scheme. I uploaded a dark scheme I found, that worked okay, but when I go in to make some additional tweaks, they simply don't save. I'll make the change > click OK > go back go the Preferences menu, review the change I made, but it won't show. As if the change didn't happen at all.
    Quit the app after making the change doesn't seem to really help either.
    Anyone experience anything like this?
    Thanks!

    I may be a little confused, but if you are working with a gray or white layer the color burn will not work as there is no color to work on. Does that make sense?

  • 3D active-x color table does not match color box ctrl values

    I am having a problem. I want to allow the user to control the background color and plot colors on the active-x 3D graph in labview 7.1.1. I am using the standard color box ctrls in labview to allow the user to pick, but the colors do not match. When I pick blue (0,0,255), it comes up red (255,0,0). When I choose yellow (255,255,0), it comes up cyan (0,255,255), and vice-versa. Black and white seems to work correctly, as well as green (0,255,0) being right in the middle. I am assuming this means whatever algorithm NI is using to create the color value is not the same from the labview side to the active-x control side. Anybody else run into this, and have a solution?

    Thanks John.
    Kind of funny, I ran off and built a sub-vi with the exact same guts as the OLE vi, but from looking at what the RGB vi did to break it down.
    I would say though, they need to make a common sub-palette to deal with color issues. They have the same two RGB VIs located in two different spots, and this OLE one is in yet another. I think I would have looked under the Active-X sub-palette before I looked under the 3D graph palette (mainly because those are junk anyway, they barely give you any functionality).
    Anyway, problem solved, thanks again.
    Attachments:
    rgbChannelSwap.vi ‏18 KB

  • IOS 7: Will there be updates to change colors for the Notes

    iOS 7: Will there be updates to change colors for the Notes & Text msgs? The white background washes out the text.

    Nobody here has any knowledge of what Apple may or may not include in future updates.
    You can send feedback to Apple about your wishes though - http://www.apple.com/feedback/

  • How do I correct the error: adobe acrobat 9 distiller can not find its standard icc profiles.

    How do I correct the error: Adobe Acrobat 9 distiller can not find its standard ICC profiles. Please reinstall adobe acrobat to correct this problem?
    I have tried all the suggestion in the forums. But I keep getting the error. I reinstalled AA9 Pro and downloaded the updates. But I keep getting the error.
    I recently upgraded to Windows 7.

    You have permissions issues on the respective folders, e.g. Windows\System32\Color and so on. Fix them and allow all apps to access the contents.
    Mylenium

Maybe you are looking for

  • Production order confirm thru IDOC

    Hello Guru, we are having problem to our confirm Production order it has COGI error BA deficit on a same material with same batch. our production order A, B, C, and D are process thru transaction code LM00. afterw that we check the process order thru

  • Cursor Performance Questions

    I have a cursor on a complex SQL that goes against seven large tables (10M rows). When I run the SQL it returns rows quickly even when the final result set is a million rows. (So first_rows does not seem to have any impact). When I run it via the cur

  • Block alv .

    Hello masters, I m using block alv to display 5 tables one below other , i have used the fm REUSE_ALV_BLOCK_LIST_INIT , REUSE_ALV_BLOCK_LIST_APPEND , REUSE_ALV_BLOCK_LIST_DISPLAY my problem is only the last table is displayed .

  • Ora home92 HTTP server...

    Hi everyone, I'm trying to start ora home92 server service but i couldn't start it. The error that i'm receiving says (could not start the oracle ora home92 HTTP server service on local computer. the service did not return an error...). Please if you

  • Adding a personal domain name

    I want to add a new personal domain name in my mobile me account, but through all the tutorials the ADD button does not appear.  Can anyone advise as to why?