Simple Color Change

Im still fairly new to flash and having issues with what
seems like the simplest of tasks.
Basically all Im trying to do is change the colour to a
different color depending on the item selected. I have a script
(very simple) that works for one button, but I cant string the code
together to change all the objects.
var color = new Color(Services);
color.setRGB(0x0066CC);
This works great for "Services"...lol. But I still have 6
other buttons (Links, Products, etc.)
I apologize if anyone sees this as a waste of time, but im
GREEN and frustrated.
I appreciate any help you can offer.
Thanx.

:

Similar Messages

  • Trying to make a simple background color change.

    I double clicked the foreground/background black and white squares as usual. This brought up the color selector and I changed to the color I wanted. When I clicked ok the foreground color changed to a medium gray instead of the color I had selected?

    Are you in Greyscale mode by any chance? Image > Mode > Select RGB.

  • Making a color changer in Flash?

    If anyone can help me. I'm trying to do something similar to
    this color selector.
    http://www.chevrolet.com/silverado/colors/
    Using simple code I can make the colors change, I just don't
    know how they made the "wipe" or any other transition for that
    matter when changing color.
    any ideas?

    "Mr_Interweb" <[email protected]> wrote in
    message news:e43qn9$obc$[email protected]..
    >I have no idea what's up with that loader. I tried it out
    on 6 different
    > computers today on windows and mac. It was working this
    afternoon. The only
    > thing I can find is that my loader is getting cached in
    IE when I cleared out
    > the cache things worked fine. If things are still fishy
    after a cache clear or
    > trying in out in Firefox, try skipping the preloader:
    >
    >
    http://ultimatewindowtinting.com/tinting-tool/tinter.swf
    >
    > The app will scale weird in the browser without the
    loader, but you can at
    > least see it.
    >
    > By the way, thank you for telling me about the errors
    you found with that
    > loader. It is the most bizarre issue I have ever seen.
    That's very interesting how you got that color selector to
    work. good one!
    I took a look at the code in your preloader. One thing that
    is not right is that you are looping back to frame 2 where the
    onEnterFrame is created. That means that you are creating
    another onEnterFrame with every loop, (or wrecking the original
    one).
    I found that if I put your file tinter.swf in my cache, then
    the preloader ended and the main file ran. If tinter.swf wasn't in
    the
    cache then the preloader just gets stuck.
    Seems like the loadMovieNum is failing.
    Anyway, instead of that you might want to do something like
    this to make sure that you don't initialize onEnterFrame more than
    one
    time..
    if(!initialized)
    initialized = true; // block this init code next time
    loadMovieNum("tinter.swf", 2);
    this.onEnterFrame = function () // add 'this' here
    ... etc
    tralfaz

  • Color Changes in Spry Data Fields

    Hi All,
    I'm new to Javascript & PHP  programming. Currently I have coded neccesary apperances for the Web  Page and also Spry Data Set to read an external XML date source file.
    What I need  to do is one of the fields, needs to have color based status changes  based on certain data or criterias received.
    For example,
    I have a  Spry Table displayed on my browser,
    Name
    Current  Status
    Lane
    Jane
    6  Mins
    1
    Peter
    Boarding
    2
    Sally
    Arriving
    3
    Alex
    Delayed
    4
    With the  above, what I need is when the current status show in minutes, the text  color will be white (This has been coded with CSS Style)
    For the  Current Status color changes, when I received anything apart from  minutes, the display will be as of below :-
    Minutes = Black
    Boarding  = Red
    Arriving = Green
    Delayed = Yellow
    My question  is can this be coded with just Javascript, HTML and normal CSS
    OR
    This  needs to be coded in PHP, ASP ?
    I'm not familiar with ASP and only have very  little knowledge of PHP. If anyone here have some experience with this,  can offer some advice on how I can apply this theory into my existing.  And if possible some code example would be great.
    Thanks.

    I have tried many times on Ben's method and it didn't work.
    I have also tried the method from Adobe's documentation site.
    Method 1
    <ul spry:region="dsStates" spry:if="{ds_RowCount} != 0" spry:repeat="dsStates" spry:test="'{name}'.match(/^[amn]/i);" spry:choose="choose">
         <li spry:when="'{name}'.match(/^n/i);" style="color: red;">{name}</li>
         <li spry:when="'{name}'.match(/^m/i);" style="color: blue;">{name}</li>
         <li spry:when="'{name}'.match(/^a/i);" style="color: green;">{name}</li>
    </ul>
    Method 2
    <div spry:region="dsStates" spry:if="{ds_RowCount} != 0">
    <table border="1" spry:repeatchildren="dsStates" spry:test="'{name}'.match(/^[amn]/i);" spry:choose="choose">
         <tr spry:when="'{name}'.match(/^n/i);" style="background-color: red;"><td>{name}</td></tr>
         <tr spry:when="'{name}'.match(/^m/i);" style="background-color: blue;"><td>{name}</td></tr>
         <tr spry:when="'{name}'.match(/^a/i);" style="background-color: green;"><td>{name}</td></tr>
    </table>
    </div>
    Can anyone make it plain and simple of how the data source should look like ?
    I'm posting my source code here to make things easy.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script type="text/javascript">
    var KomtarETA = new Spry.Data.XMLDataSet("KomtarETA.xml", "komtareta/bus", {useCache: false, loadInterval: 100});
    </script>
    </head>
    <body>
    <div spry:region="KomtarETA">
      <table>
        <tr>
          <th>Route</th>
          <th>Current</th>
          <th>Destination</th>
          <th>Next</th>
          <th>Lane</th>
        </tr>
        <tr spry:repeat="KomtarETA">
          <td>{route}</td>
          <td>{current}</td>
          <td>{destination}</td>
          <td>{next}</td>
          <td>{lane}</td>
        </tr>
      </table>
    </div>
    </body>
    </html>
    The above is the HTML file I start working with.
    The {Current} field needs to have it's data periodically changing color & addition of flashing effect based on it's input from the XML data.
    So my question is how do I work about ? I don't quite get the explanation above.
    Thanks.

  • IWeb hyperlink color change: have already tried posted suggestions

    I am beyond frustrated right now. Please help me get my program to do what it was clearly designed to do! I will be thrilled if I am just making a simple error.
    I have tried the following to change hyperlink text color:
    a. disabled hyperlinks, selected the hyperlink (both by clicking in and by clicking near--both get blue box around it), then highlighting text, clicking on "T" in inspector, changing font color there, re-enabling hyperlinks. NO COLOR CHANGE.
    b. downloading a program that is supposed to do it for you. NO COLOR CHANGE.
    c. with navigation bar (not my main concern), tried creating my own text box, with own links. When it was just text, I changed the color with font change at bottom of iWeb. As soon as I created hyperlinks, they turned to black and wouldn't change. NO COLOR CHANGE>

    Yes delete it and redo it using the new way. It is sometimes a lot faster and easier to get rid of a difficulty than trying to find out where it goes wrong.
    I think it is part of the way it was formatted initially but I can't say for sure why it is not right. You can copy paste the style from another page or if this link is on another page you can copy paste it.
    Mireille

  • Yosemite load bar color changes / from black to white

    Hello there,
    is anyone experiencing the same as me?
    When booting my MacBook Pro Retina Mid 2012 the load bar color changes from black to white. The color change happens as the keyboard background lights turn on. After this I get to the login screen with the blurred desktop background image (seems normal)
    Video: https://vid.me/hOX
    (sorry for the vertical video)
    I know that the load bar is a feature of Yosemite, but not with the color changes.
    I did a clean install of OS X Yosemite with the AppStore download and the Diskmaker X Tool.
    Thanks for answers...

    No
    With a very advanced photo editor like PhotoShop and lots of skill you could do that
    It is certainly not a simple operation if it is just a B&W image with no color information
    LN

  • Display color changes when Photoshop opens

    Hi there,
    Since recently, whenever I open Photoshop CS6 (13.0.1) or Illustrator CS6 (16.1.0), the display color changes, i.e. as if the display color profile termporarily changes to a different one. Even if I switch to another app, the color change will remain until I quite Photoshop or Illustrator. Using Mac OS 10.8.2.
    Does anyone anyone have an idea how to prevent this from happening?
    Thanks!

    The color shift happens when the computer changes the graphics card (from Intel HD to Nvidia or AMD). It's a problem of Mac OS X 10.8.x. I found a simple solution that worked (at least for me):
    Turn off automatic graphics switching in System Preferences > Energy Saver
    Reboot your computer
    Turn automatic graphics switching on again (or leave it off, as you like ...)
    It seems that the mac has to start up with the discreet graphics card turned on (Nvidia or AMD).

  • Rules applied to multiple cells trigger color changes when any of the cells

    "Rules applied to multiple cells trigger color changes when any of the cells meet the rule’s condition." That's what Help says, but when I follow the directions, it doesn't work. This is in Numbers 08.
    I have a table where the contents of one column are either "YES" or "NO", depending on formulas using variables from other cells. If YES, I want the fill of that cell and that of two adjacent cells to change from white to green. I select all three cells and use conditional format rules for "text contains:" YES, then choose my fill color. When I return to the table and introduce values for the variables that trigger the rule, only the cell in the YES/NO column changes to green; the other two remain white.
    While I am spreadsheet challenged, I usually can follow directions as plain as those in Help, but it's not working. I couldn't find anything in the discussions after an hour of searching. Is this a known problem or am I just stupid?

    For what it's worth, that's the way I read that line in the User Guide as well. What it actually appears to mean, though is 'Rules applied to multiple cells apply independently to each of the cells."
    Here's a workaround for your three adjacent columns. Long, but fairly simple steps.
    Add a second table to the sheet (Table 2).
    Resize the second table to one column wide and as many rows as you want to apply the conditional format to.
    Set the width of the column to the same width as the three columns you want to highlight, and the row height(s) to match the rows.
    Format to table to have NO Header or Footer row or column.
    Use the Wrap Inspector to uncheck "Object causes wrap"
    In the first top cell of Table 2, enter an = sign, then Click on Table 1 in the sidebar, Click on the first cell that will hold YES or NO.
    Fill the formula down the rest of Table 2.
    With all cells in Table 2 selected, use the Cell Format inspector to set the 'text contains yes' rule and the conditional fill colour for these cells.
    Test the conditional formating by introducing values into Table 1.
    Click on Table 1 in the sidebar, then use the Table inspector to set Cell Fill to 'none'.
    Click on Table 2 in the sidebar, then drag that table onto table 1 aligning it to cover the cells in which the conditional formating is to appear.
    When positioned (and still selected), go to the Arrange menu and Send Backward to move Table 2 behind the (transparent) cells in Table 1.
    With Table 2 still selected, click on the Cell Borders color well and set the Opacity of the borders to 0%.
    Click the Text inspector and set the Text colour Opacity for Table 2 to 0%.
    Regards,
    Barry

  • Enter event  field color change issue

    I'm trying to make a script that will change the color of a field's content area when the user enters it (either through clicking or tabbing to the field). It seems simple enough to do, but I haven't been able to get it working.
    I downloaded the sample .pdf file that describes how to do this at: http://partners.adobe.com/public/developer/en/livecycle/designer/pdfs/FieldFillColor.pdf
    Push the button, the colors change. Seems to work fine, right? Except for the horrible, horrible period in the color definition, of course. Publishing a 2 line script with a bug as an EXAMPLE? For shame.
    But, when you move the code to the Enter event, the caption changes color, but the content area does not... until you LEAVE the text box, at which point it DOES change color. This doesn't make any sense to me. Is there something undocumented going on here that I don't know about, or is this just another bug?

    This won't speed it up, but I suggest making your code a lot cleaner by making use of this class (I haven't tested it):
    public class ColorRange {
       private Color min, max;
       public ColorRange(Color min, Color max) {
          this.min = min; this.max = max;
       public boolean contains(Color c) {
          return c.getGreen() >= min.getGreen() && c.getGreen() <= max.getGreen() &&
             c.getRed() >= min.getRed() && c.getRed() <= max.getRed() &&
             c.getBlue() >= min.getBlue() && c.getBlue() <= max.getBlue();
    //...SNIP...
    ColorRange blue, red, green, yellow; //initialize these
    //...SNIP...
       if ( blue.contains(robot.getPixelColor(640,480) ) {Furthermore, I would introduce constants for your sample locations:
    Point blueLoc = new Point(640, 480); //etcEdited by: endasil on 14-Sep-2009 10:21 AM

  • IOS4.2 Calendar Color Changes...

    Has anyone noticed the calendars colors changes since iOS4.2. Now i have pastel colors...instead of red it is pastel purple, my blue and green also became light pastels...it is actually ugly and i wonder why such changes are happening with still no way to modify calendar colors at will on the iPhone...I am very disappointed with that change.
    Anyone knows a trick to come back to normal/original colors?

    Worst part about the new colors is how little contrast they have with the text. It used to be a high-contrast white on five relatively-bold colors. Easy to read. Now, it's one drab color on another very similar drab color, with no contrast or readability). (mustard yellow on dull yellow, drab dark green on drab medium green, dark rose on light rose, dark purple on medium drab purple, medium drab orange on just-slightly-lighter medium drab orange, drab medium blue on drab light blue, or, oddly enough arguably the most readable of the bunch, medium brown on slightly lighter medium brown)
    And to make matters worse--it used to be that if you synched with Google Calendars via CalDav, you got colors on your iPhone which kind of matched the on-computer Google Calendar colors, with white text and decent readability. But they've changed these now too, with the colors not coming nearly as close to those you see on the computer, and with text colored in darker version of the background color (resulting in poor contrast). And all the colors have been so drabbed out that many of them are nearly identical. AAAAARRRRRRGGGGGGGGGHHHHHHHH!!!!!!!!!
    It would be nice if Apple would allow you to manually select background colors from their pre-selected palette--but it really wouldn't be going far enough. Either the need to expand their palette to include more options (so people who want high contrast can do so, and those who don't can stick with their new hard-to-read color combos), or they need to allow people to select their own BACKGROUND and TEXT colors for each calendar, so they can design their own contrast level.
    With everything else iPhones can do, this really seems to be a simple no-brainer. What gives, Apple???

  • Disabled color change...

    Hello everybody,
    this is my first comment here because for all other problems I found solution without registration
    Anyway I was looking how to disabled color change (just some part of sentence) which should be highlighted, example is right here (it's part of topics in rpg game):
    Tell me some rumours
    I killed the dragon (quest)
    Goodbye
    In the init. state text "I killed the dragon" is black and text "(quest)" is yellow. Highlight color is red :
    mc_Topics.mc_topic0.tField.textColor = 0xb21d22; // init. state highlight first topic
    Now if I want highlight sentence with "(quest)" it's make this (simple) :
    mc_Topics["mc_topic" + Index].tField.textColor = 0xb21d22;
    but it will highlight of course all sentence by red color even if I want to quest word stay yellow.
    I know I can make it somehow like this for highlight :
    mc_Topics["mc_topic" + index].tField.html = true;
    mc_Topics["mc_topic" + index].tField.htmlText = lowerCase + "<FONT COLOR = '#695f49'><FONT SIZE = '24'>" + quest + "</FONT></FONT>";
    But problem is that in function where I'm setting highlight I dont know variables for text (lowerCase) and quest (there can different text).
    Thanks for any suggestion : )
    Adam

    Yes you right I didn't realize that I can still get them from array. It's little complicated as it is time-input from game anyway it seems that it's solution. Thanks

  • ICal Calendar Colors Changing On Their Own; iCloud Connection

    AGGRAVATING PROBLEM:
    Many in this forum have written recently about a problem ongoing for people with multiple iCal calendars where iCal calendar colors change "automatically" when you haven't selected those colors, or even "change back" before your eyes to some color your DIDN'T select after you select a new one.  If you log into iCloud on the Web and try to change the color of certain calendars, they refuse to change.  Try as you might, the color you want for your calendar won't "stick" and it is forced to be the wrong color on all your devices.  In some cases, even the names of some of the calendars cannot be changed.  On other calendars in your list, the colors and names will change fine. 
    Related symptoms:  Calendars you have deleted "come back."   Or, calendars you did not create yourself show up in your calendars list, such as "Calendar" or "Home" or even "Untitled."  Note that the problem seems to be most prevalent with calendars with names "Home," "Work," OR either of these words in the NAME of the calendar.  For instance, "Bob's Work" might get snagged (it can't be deleted without coming back or its color is stuck and "comes back"). 
    I spent a long time on the phone with a helpful Apple senior advanced specialist on this problem today.  We conducted a very large number of "experiments". Our family has two iPads, 2 iPhones, and 2 iMacs, so it was easy to rule things in or out.  I will present some information that may help.
    SOME OF WHAT APPEARS TO BE GOING ON:
    First, Apple has not resolved this.  But the problem appears to be related to iCloud, and NOT to individual devices.  After de-linking all of my individual devices from iCloud, I could change any of the colors or names at will on any given device, create new calendars and then change their colors to whatever I wish, delete calendars, change names...no problem.  However, after re-linking calendars to iCloud, all the problems mentioned above returned.  The chances that my iMacs, iPhones, and iPads are all causing the problem independently is very low. They also have slightly different OS versions on them, so it is not likely an a particular device OS, though that could be indirectly related.  Also, the colors "change back" within about the same time (usually a few seconds to up to 30 seconds) that it takes to do a "refresh" (i.e. an update) to the iCloud servers.  This when iCloud is turned on, and the absence of it when iCloud is turned off (for calendars), strongly suggests that it is the iCloud server and its interaction with your devices that the fundamental cause of the problem.
    Apple has said that they are aware of this problem and their engineers are working on a fix.  Historically, this can mean just a few days, or it could be a few months, years, or "whenever."  They don't give estimates of when it will be fixed.  Exactly WHY this is happening is unclear, but my guess is that it is a modification to the iCloud server code that Apple implemented without testing it thoroughly enough to discover this problem.  Apple does not admit to that, of course and I don't know if I am correct.
    A WORKAROUND SOLUTION THAT WORKED FOR ME:
    Please note this is a workaround and not a full fix.  Apple needs to run a patch on their iCloud server code.  Until then, I did the following which seems to have worked for me for now.  Read the whole list before deciding whether to proceed.  I don't guarantee it will work in all situations.
    Note...I found I was stuck for now with the color of ONE of my calendars.  If you are like me, you want to keep that one and work around it....
    Backup first... Make sure that your iCloud copy of your calendar data has the calendar event information you want to save - even if the color is wrong.  Log in at www.icloud.com and do a refresh to sync to the Cloud.  Check over your calendars online to make sure the event data appears to be there for all of your calendars (even if their color or name is not what you want).
    Steps:
    1.     Go to every device that you have linked to iCloud separately. Go into Settings, iCloud, and then uncheck the "Calendars" option.  This delinks your calendars for that device to iCloud.  As you do this on each device, when prompted, select "Keep On My" ..iPAD...iPhone...iMac... etc.  This will preserve the calendar information on the device so it won't be deleted.  I think this is safer, but you can click on "Delete" if you want, too.  Note - if one of your devices is an iMac, with OSX Lion and before, you may be forced (I was) to delete the iCloud calendars from the iMac.  So again, make sure they are backed up to the Cloud first (or somewhere else).
    3.     With the iCloud Calendars Option on all your devices still turned off, go to the WEB and log into iCloud.com.  You need to figure our which calendar iCloud won't let you change the color for.  You probably already know.  On iCloud.com, click on "Calendars," then click open your calendar list and select "EDIT" at the bottom of the dialog box.  One at a time, click on the color dots next to each calendar name and try to change the color (you can put any back after the test if you want). You will probably see a certain one that just goes right back to what you don't want.  This is the one for which the color is stuck, but you may be able to change the name of it now that your devices are unlinked from iCloud.
    4.     Still in iCloud.com, change the names and colors of any of the other calendars you wish to change.  Delete any empty calendars that mysteriously appeared without your wanting them.  Take note of all the calendars, names, and colors that are on the final list of calendars.
    5.     On EVERY device, BEFORE turning iCloud back on on ANY of them: Change the colors and/or names of calendars, delete calendars, etc. so that the calendar names and colors on the device are exactly the same as what you left in iCloud.com in the last step.
    6.   One at a time on each device, go back to Settings and then "iCloud" and check again the box for "Calendars."  You will be asked whether you want to "MERGE" your data with iCloud.  I selected MERGE to ensure I didn't lose anything.  Link each device again into iCloud one at a time.
    7.  When each device is back, go back to iCloud on the Web, or go into iCAL on one of your devices.  Set to view ALL calendars.  Look for duplicates of some of your events.  I found quite several as an artifact of "merging", but in my case it only took me about 5 minutes to go through quickly and delete the duplicates.  It deleted the duplicates on all of the devices at once, so I only needed to delete dups on one device.  I did not find that I lost any events as long as I kept one valid copy.
    Again, no guarantees...hope this works for others.  Good luck.

    I'm getting the same thing and it's really bugging me! Keeps changing colour to one I do not want and I have tried everything to get it to stay the colour I have chosen!!

  • Report row color change based on condition

    I have follow this forum steps Re: Color Row In Report
    Column Template 1
    <td #ALIGNMENT# class="t1data" style="background-color:#ADD8E6;">#COLUMN_VALUE#</td>
    PL/SQL expression condition
    '#2#' = 'BOOKED'
    Column Template 2
    <td #ALIGNMENT# class="t2data" style="background-color:#FFE87C;">#COLUMN_VALUE#</td>
    PL/SQL expression condition
    '#2#' = 'ENTERED'
    http://img29.imageshack.us/img29/2792/apexcolor.png
    This does color change but for some rows the colors are highlighted wrong and when i mouse over the rows , it changes to wrong color.

    Hi,
    t1Data and t2Data sound like standard theme css class names.
    In my example, the colouring is done by the style attribute on the TD tag. For "normal" rows:
    &lt;td #ALIGNMENT# headers="#COLUMN_HEADER#" class="t18data"&gt;#COLUMN_VALUE#&lt;/td&gt;for highlighted rows:
    &lt;td #ALIGNMENT# headers="#COLUMN_HEADER#" class="t18data" style="background-color:red;"&gt;#COLUMN_VALUE#&lt;/td&gt;Have you defined "t1Data" and "t2Data" in STYLE tags on your page?
    Andy

  • Why have colors change in new update?  And won't allow me to permanently change back - as they revert on their own?

    My iCal calendar colors changed by themself.  I have gone to "edit" and "get info" and have changed the colors back.  Within minutes, they change back to the wrong color.  It has now made these same changes on my iPhone 5 and iPad mini.  What's going on?  How do I permanently change these colors?

    Here are two screen shots to show you what I am seeing.  The first screen shot shows it allowing me to select (highlighted in blue) my admin user (which is what I am locced in as).  The second screen shot shows it allowing me to select the "Guest" user (highlighted in blue).  However when I click on the user "Orion" nothing happens.  It will not change to highlight that user.

  • Colors changing on my calendar

    What is Apple doing about supporting its clients with information on fixing the problem of colors changing on iCal?
    Is this even on their radar?

    This is actually not about the colors changing.  The colors change but it's because the appointments are being assigned randomly (it seems) to another calender like, Home, Work, Birthday.  If you uncheck the calender it will cause the events to disappear.  Check the calender again and the events reappear.
    I don't know how the other calenders got turned on and how they linked to only some events.  If you click on Calender in the upper right you'll see what is checked.  try unchecking and see if your appointments disappear.  So for Apple, please correct this issue.

Maybe you are looking for

  • BPC not working in Excel 2013

    Dear Team, Currently we are using BPC10 version in SAP. Version 10.0 SP12Patch 8 .NET4 Excel version is 2010 . whereas we have upgraded our Excel Version to 2013 BPC is not supporting. BPC10 is not supporting for Microsoft Excel 2013. Please guide ho

  • Initialization cannot be deleted in source system

    Hi All,    While doing an Init Load for the first time, the load failed sinc there was a dump in the source R3 system.    Then I corrected the error (a CMOD coding error) in R3 and tested it in RSA3. The simulation worked fine.    Now I am trying to

  • Third Party Order With Shipping Notification

    Hi SD folks, What is the Movement type we need to enter to do a dummy GR for third party order with shipping notification. Regards, Rahul

  • Photoshop CC no longer recognizes my Epson 1400 after update.

    I installed the most recent creative cloud update and now I whenever I try to print from Photoshop with my Epson Stylus Photo 1400 I get this message:"There was an error opening your printer. Printing functions will not be available until you have se

  • New Monitor Showing Different Colors - Monitor Profile?

    Hi All, in need of some help. I got a new Acer monitor and I am having three issues. The first is when I open photoshop I ger the following error: "Monitor Profile ACER S232HL appears to be defective. Please return your monitor calibration softwear."