Color of Application

Hi All,
How can i change the color of Application
I am on Apps R-12
Thanks
Chandra Prakash Jangid.

Chandra,
Please post E-Business Suite questions in the E-Bus Forum. This forum is dedicated to Stand-alone Oracle Forms development.
As to your color question, this is controlled by a profile setting. I don't remember the exact name of the profile, but if you search on %COLOR% in the profile option, you should find it. It should be noted, you must have the responsibility assigned to you that allows you to alter user level profile settings - sorry, I don't remember the name of the responsibility. :-(
Craig...

Similar Messages

  • Background Color on Application tag not showing...

    I just recently upgraded to the nightly build version # 4.0.0.10045 and the backgroundColor property on the main application tag is no longer rendering the background color. I noticed a new ApplicationSkin.mxml in the spark skins with the following:
    <!---
            A rectangle with a solid color fill that forms the background of the application.
            The color of the fill is set to the Application's backgroundColor property.
        -->
        <s:Rect id="backgroundRect" left="0" right="0" top="0" bottom="0"  >
            <s:fill>
                <s:SolidColor color="{getStyle('backgroundColor')}" />
            </s:fill>
        </s:Rect>
    However adding a backgroundColor property to the Application tag or in the CSS has not given any results.

    Ok it turns out it is not the application tag causing problems, but the halo VBoxes, HBoxes and Viewstacks. It seems I can no longer apply background colors to them at all.
    Here's an example:
    <mx:VBox id="footerVBox" horizontalAlign="center" verticalGap="-5" paddingBottom="5" paddingTop="0" backgroundColor="0xFF0000" width="600">
         <mx:HBox horizontalGap="1" verticalAlign="middle">
              <mx:Label text="{copyrightSymbol} 2009 SearchIgnite" fontSize="12" color="#003366" />
              <mx:VRule height="12" strokeColor="#003366"/>
              <mx:Label text="{'Version ' + version}" fontSize="12" color="#003366"/>
              <mx:VRule height="12" strokeColor="#003366"/>
              <mx:Label text="Customer Service 888-744-6483" fontSize="12" color="#003366" />
         </mx:HBox>
    </mx:VBox>
    Is rendering with a white background behind it, obsucring the background color of my application. The backgroundColor style property is not getting applied at all.
    Upon rewriting this group as:
    <s:Group id="footerVBox" width="100%">
         <s:layout>
              <s:VerticalLayout horizontalAlign="center" paddingBottom="5" paddingTop="5"  />
         </s:layout>
         <s:Group>
              <s:layout>
                   <s:HorizontalLayout verticalAlign="middle" />
              </s:layout>
             <s:Label text="{copyrightSymbol} 2009 SearchIgnite" fontSize="12" color="#003366" />
             <mx:VRule height="12" strokeColor="#003366"/>
             <s:Label text="{'Version ' + version}" fontSize="12" color="#003366"/>
             <mx:VRule height="12" strokeColor="#003366"/>
             <s:Label text="Customer Service 888-744-6483" fontSize="12" color="#003366" />
    </s:Group>
    </s:Group>       
    I am able to get the background color of the app to show through. Again I am using build version 4.0.0.10045 and this was not an issue in the previous builds.

  • Fully Color Managed Application (using calibrated monitor profiles)

    Hi,
    I'm new to JAVA 2D so I may be missing something obvious - apologies if I am, but I've been trawling the API and web to try and solve this for many hours - so any help would be much appreciated!
    I'm trying to write an application to open a JPEG with an embedded colour profile (in this case AdobeRGB) and display it with correct colour on my monitor, for which I have an accurate custom hardware calibrated profile. In my efforts to do this several problems / queries have arisen.
    So, JAVA aside, the concept is simple:
    a) Open the image
    b) Transform the pixels from AdobeRGB->Monitor Profile (via a PCS such as CIEXYZ).
    c) Blit it out to the window.
    (a) is fine. I've used the following code snip, and can query the resulting BufferedImage and see it has correctly extracted the AdobeRGB profile. I can even display it (non-color corrected) using the Graphics2D.drawImage() function in my components paint() method.
    BufferedImage img = ImageIO.read(new File("my-adobe-rgb.jpg"));(b) Also seems OK (well at least no exceptions)...
    ICC_Profile monitorProfile = ICC_Profile.getInstance("Monitor_Calibrated.icm");
        ColorConvertOp convert = new ColorConvertOp(new ICC_ColorSpace(monitorProfile ),null);
        BufferedImage imgColorAdjusted = convert.filter(img,null);[I was feeling hopeful at this point!]
    QUESTION 1: Does this conversion go through the CIEXYZ (I hope) rather than sRGB, there seems to be no way to specify and the docs are not clear on this?
    (c) Here is the major problem...
    When I pass imgColorAdjusted to the Graphic2D.drawImage() in my components paint() method the JVM just hangs and consumes 100% CPU.
    QUESTION 2: Any ideas why it hangs?
    Pausing in the debugger I found the API was busy transforming by image to sRGB this leads to my third question...
    QUESTION 3: If I pass an image with a color model to drawImage() does drawImage do any color conversion, e.g will it transform my adobe image to sRGB (not what I want in this case!)?
    And if answer to Q3 is yes, which I suspect it is, then the next question is how to make the J2D understand that I have a calibrated monitor, and to tell it the profile, so that the Graphics2D it provides in paint() has the correct color model. Looking in the API I thought this was provided to J2D through the GraphicsEnviroment->GraphicsDevice->GraphicsConfiguration.getColorModel(). I tried looking at what these configurations were (code below). Result - 10 configurations, all with the JAVA 2D sRGB default, despite my monitor colour management (through the windows display properties dialog) being set to the calibrated profile.
    QUESTION 4: Am I just off track here - does Java 2D support monitor profiles other than sRGB? Is what I am trying possible?
    GraphicsConfiguration[] cfg = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getConfigurations();
        System.out.println(cfg.length);
        byte[] d;
        for (int j=0; j<cfg.length; j++) {
          System.out.println("CFG:"+j+cfg[j]);
          d = ((ICC_ColorSpace)cfg[j].getColorModel().getColorSpace()).getProfile().getData();
          for (int i=0; i<d.length && i<256; i++){
            if (d[i] != 10 && d[i] != 13){
              System.out.print((char)d);
    System.out.println();
    Any help much appreciated.
    Thanks.

    I have had some sucess with this, but it wasn't easy or obvious. The trick is converting the color to the monitor profile and then changing the color model to be sRGB without changing the pixel data. JAI's Format operation does this easily although I'm sure there are other ways to do it. The RGB data is then displayed without being converted to sRGB so that the monitor calibration is maintained. I will answer your questions since I had similar ones.
    Q1. Yes the conversion is done using XYZ as it should be.
    Q2. I believe paint is just very slow, not hanging. Any color model other than XYZ or sRGB requires conversion before it can be displayed (as sRGB). This is both slow and incorrect for a calibrated monitor.
    Q3. Yes that is what I have found, a conversion to sRGB will always happen, unless it appears to be already done as when the color model is sRGB (even though the pixel data is not!).
    Q4. It is possible but apparently only with this somewhat strange work around. If there is a way to change the Java display profile to be other than sRGB, I could not find it either. However, calibrated RGB display can be achieved.
    Since I have seen many other posts asking for an example of color management, here is some code. This JAI conversion works for many pairs of source and destination profiles including CMYK to RGB. It does require using ICC profiles in external files rather than embedded in the image.
    package calibratedrgb;
    import com.sun.media.jai.widget.DisplayJAI;
    import java.awt.*;
    import java.awt.color.*;
    import java.awt.image.*;
    import java.io.IOException;
    import javax.media.jai.*;
    import javax.swing.*;
    * @author keitht
    public class Main {
        public static void main(String[] args) throws IOException {
            String filename = args[0];
            PlanarImage pi = JAI.create("fileload", filename);
            // create a source color model from the image ICC profile
            ICC_Profile sourceProfile = ICC_Profile.getInstance("AdobeRGB1998.icc");
            ICC_ColorSpace sourceCS = new ICC_ColorSpace(sourceProfile);
            ColorModel sourceCM = RasterFactory.createComponentColorModel(
                    pi.getSampleModel().getDataType(), sourceCS, false, false,Transparency.OPAQUE);
            ImageLayout sourceIL = new ImageLayout();
            sourceIL.setColorModel(sourceCM);
            // tag the image with the source profile using format
            RenderingHints sourceHints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, sourceIL);
            ParameterBlockJAI ipb = new ParameterBlockJAI("format");
            ipb.addSource(pi);
            ipb.setParameter("datatype", pi.getSampleModel().getDataType());
            pi = JAI.create("format", ipb, sourceHints);
            // create a destination color model from the monitor ICC profile
            ICC_Profile destinationProfile = ICC_Profile.getInstance("Monitor Profile.icm");
            ICC_ColorSpace destinationCS = new ICC_ColorSpace(destinationProfile);
            ColorModel destinationCM = RasterFactory.createComponentColorModel(
                    pi.getSampleModel().getDataType(), destinationCS, false, false, Transparency.OPAQUE);
            ImageLayout destinationIL = new ImageLayout();
            destinationIL.setColorModel(destinationCM);
            // convert from source to destination profile
            RenderingHints destinationHints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, destinationIL);
            ParameterBlockJAI cpb = new ParameterBlockJAI("colorconvert");
            cpb.addSource(pi);
            cpb.setParameter("colormodel", destinationCM);
            pi = JAI.create("colorconvert", cpb, destinationHints);
            // image is now the calibrated monitor RGB data ready to display, but
            // an unwanted conversion to sRGB will occur without the following...
            // first, create an sRGB color model
            ColorSpace sRGB = ColorSpace.getInstance(ColorSpace.CS_sRGB);
            ColorModel sRGBcm = RasterFactory.createComponentColorModel(
                    pi.getSampleModel().getDataType(), sRGB, false, false, Transparency.OPAQUE);
            ImageLayout sRGBil = new ImageLayout();
            sRGBil.setColorModel(sRGBcm);
            // then avoid the incorrect conversion to sRGB on the way to the display
            // by using format to tag the image as sRGB without changing the data
            RenderingHints sRGBhints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, sRGBil);
            ParameterBlockJAI sRGBpb = new ParameterBlockJAI("format");
            sRGBpb.addSource(pi);
            sRGBpb.setParameter("datatype", pi.getSampleModel().getDataType());
            pi = JAI.create("format", sRGBpb, sRGBhints); // replace color model with sRGB
            // RGB numbers are unaffected and can now be sent without conversion to the display
            // disguised as sRGB data. The platform monitor calibration profile is bypassed
            // by the JRE because sRGB is the default graphics configuration color model profile
            JFrame frame = new JFrame();
            Container contentPane = frame.getContentPane();
            contentPane.setLayout(new BorderLayout());
            DisplayJAI d = new DisplayJAI(pi); // Graphics2D could be used here
            contentPane.add(new JScrollPane(d),BorderLayout.CENTER);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(600,600);
            frame.setVisible(true);
    }

  • About themes editor chainging colors  of applications in webdynpro

    hi,
    every body
    iam trying to changing the colors of existing webdynpro appllications so i downloaded NW04Stack09Themes.ZIP
    in my current directory and also
    i downdloaded some plugins The 3 plug-ins are: com.sap.ur.previeweditor_1.1.6, com.sap.ur.servlet_1.1.8 and  com.sap.ur.themeseditor_1.1.8.
    afterndownloading those files and plugin
    i placed those plugins in SAP\JDT|eclipse\plugins folder.
    in that particular folder
    but iam not getting that application themes editor project in my netweavr developer studio
    i think NW06Stack09Themes.ZIP
    I have to download this zip folder where i have to get this
    give me suggestions solve this problem
    and give url of SP11 AND SP12
    THAT particular  things to me
    byeee
    WISH YOU HAPPY NEW YEAR 2006
    FOR GETTING COLOR WEBDYNPRO APPLICATIONS

    Hi Kalasker,
    Thanks for the New year wish & hope you too have a wonderful year ahead :).
    Make sure you close your NWDS & re-open it after you copy these plugins. Even then if you are not able to see the themeeditor, it could be a problem with the version of your NWDS. Make sure you use a themeeditor compatible with your NWDS. For any information abt downloading themes & themeeditors refer SAP note 854870. This query may help you with this: Where to download the themeseditor?
    Hope this helps,
    Best Regards,
    Nibu.

  • Color accent application for N8

    Hi guys
    I love the color accent option in shooting pictures and wondered whether there is an application for my nokia which will enable this feature on my phone
    An example of what I mean: http://farm2.static.flickr.com/1017/627354251_f656f4f54b.jpg
      Thanks for any help in advance

    You can find them on the Nokia (or ovi) store app on your phone or here:
    http://store.ovi.com/search?q=prayer+time

  • The color  of applications icon changed to dark color, what does it mean

    it happened twice, applications icon changed from red to dark red for a while?

    Hello Omar,
    Maybe you've found out by now but I believe it's because the apps are 'refreshing'. I think this is new to iOS 7 because I don't remember it happening before...
    If you go into your settings-->general--> and about halfway down the list is BACKGROUND APP REFRESH.
    I wish I could include a picture to make it easier but if you go into this setting you will see a list of all the apps that will refresh and also the master switch that turns them all off.. I'm not sure what it's doing when it's refreshing tho, maybe checking for updates or location?
    Hope this helps,
    Mister

  • Vista color management & CS3

    Two weeks ago I wrongly faulted my new Dell 2707WFP monitor for its high contrast and saturation after many failed profiling attempts using the Spyder2Pro with the updated Vista software. I'm still at a loss as to why images are dark and overly saturated in Photoshop, Bridge and Lightroom. They were all fine on an older Dell system running XP home and CS2. I've gone so far as to purposely inflict various gamma curve settings in Spyder to bump up the low end luminance but resulting profiles still show images clipped in the low end and overall saturated even as the desktop and the PS interface turn a sickly pale.
    I'm new to CS3 and Lightroom and so I'm not sure if the following is normal. When I view a NEW batch of images that were not previously viewed in Bridge, they are normal looking, however when I click on a thumbnail, it then reverts to the same garish contrasty version that I see full size in the above adobe software when opened. The same thing happens in the WINDOWS PHOTO GALLERY viewer but NOT in WINDOWS EXPLORER. In Explorer the thumbs are as they should be...normal, and if I open them in Microsoft OFFICE PICTURE MANAGER or in Quicktime PICTUREVIEWER, they open as normal images.
    All this sounds like a profile issue of some kind, but as far as I know, everything appears to be set correctly in both PS and the profiling software. However, Im not sure about the system settings regarding profiles. In the Windows COLOR folder all the profiles are where they should be and I can select which one to load using the Spyder Profile Chooser. And again, I do restart PS when I change a profile. Could this be some kind of Vista bug??
    Other notes:
    If I do a screen shot and paste it back into PS, it turns DARKER than the original file.
    When I do additional calibrations I restart PS to load the latest profile.
    All files tagged sRGB and in sRGB workspace. PS shows this correct space and likewise the correct monitor profile in COLOR SETTINGS
    ATI CATALYST CONTROL CENTER fails to run on bootup so windows shuts it down. No fix that I can find for this.
    Running Vista Home Premium on a Dell Inspiron 530 E6550, 4GB memory, Radeon HD2600XT
    Thanks again for your help!

    Found this on the DATACOLOR site in their SUPPORT CENTER:
    Incorrect Color outside Photoshop on Wide Gamut Display
    Solution >>I just purchased a Dell 2407 HC display, considered wide gamut and the spyder 3 elite. I've used the spyder 3 to calibrate the monitor. In photoshop whenever I "Save for Web" or "Save as" in the sRGB color space, I wind up with over saturated oranges and reds. I'm needing to save in the sRGB for web work. My working color space is set to sRGB which looks fine when editting in photoshop, but as soon as I save it out of photoshop the reds and oranges are over saturated. I purchased the spyder 3 because of the wide gamut support, is there something I'm missing in calibration?
    The display profile is not at fault here. The ICC profile for the display tells any application that uses color management what the color values for the display are. Thus Photoshop, which is using the profile, corrects for the colors on screen, giving correct results. A non-color managed application (such as Internet Explorer for Windows) would not use the profile and thus the colors would be oversaturated on your wide gamut screen. This is not the fault of the profile (that would make the color look wrong in Photoshop, where the profile is being used), but the lack of a profile (which makes the color look wrong in non-color managed applications).
    This is the problem with using a Wide Gamut display for viewing in non-color managed applications. A typical gamut display is not color correct in such applications, but is at least approximately correct; a wide gamut display is noticably oversatured in some colors. On the Mac many applications, including web browsers and OS utilities, are color managed, so it is less of an issue than on Windows.
    Article Details
    Article ID: 723
    Created On: 10 Jan 2008 07:31 PM
    So if the color is off outside PS, then its not the fault of the profile. My problem is the image is off INSIDE PS, and by the same reasoning, then the profile is at fault. If the profile is to blame, is this a Spyder issue or Vista issue? So far noone seems to know anything including Adobe tech support and Dell. Been waiting 2 wks to hear from the Spyder people.
    Would really appreciate some input on this. thanks.

  • Confused about Color Management in CS5 (Photos appearing differently in all other programs)

    I recently noticed this and it's been driving me crazy; when I view photos in Photoshop CS5 they appear significantly lighter/more washed out than when viewed in other programs like Zoombrowser, Digital Photo Professional or just in a regular Windows folder using Filmstrip mode (Windows XP).  When opening the same photo in both CS5 and Zoombrowser and switching back and forth between the two windows the difference is very apparent...for example, one of the photos I compared was of a person in a black shirt -- in CS5 (lighter/washed out) the folds in the shirt were very obvious, but in Zoombrowser (darker, more contrast/saturation) the folds were nearly invisible and it looked like just solid black.  Now, after messing around with the settings in both Photoshop and in Zoombrowser I've found a few ways to get the photos to look the same in the two programs; one way gives them both the lighter/more washed out appearance and another way gives them both the darker appearance with more contrast and saturation.  My problem is that I'm not sure which view is accurate.
    I use a NEC MultiSync LCD1990SXi monitor with SpectraView II calibration software and calibrate it every 2 weeks using these calibration settings (screenshot): http://img52.imageshack.us/img52/8826/settingsx.jpg
    In the SpectraView II Software under Preferences there's an option that says "Set as Windows Color Management System Monitor Profile - Automatically selects and associates the generated ICC monitor profile with the Color Management System (CMS)."  This option is checked.  Also, when I open the Windows' Color Management window there's only one option displayed, which is "LCD1990SXi #######" (the ####### represents my monitor's serial number).
    I assume the above settings are all correct so far, but I'm not sure about the rest.
    Here are my current default Color Settings in CS5 (screenshot): http://img97.imageshack.us/img97/666/photoshopcolorsettings.jpg
    Changing these settings around doesn't seem to make the photo appear much different.  However, when I go to Edit -> Assign Profile, then click off of "Working RGB: sRGB IEC61966-2.1" and instead click Profile and select "LCD1990SXi ####### 2011-06-21 18-30 D65 2.20" from the drop-down menu, the picture becomes darker with more contrast and saturation and matches the picture in Zoombrowser.  Also, if I select "Adobe RGB (1998)" from the drop-down menu it's very similar in terms of increased darkness and contrast but the saturation is higher than with the LCD1990SXi setting.  Another way I've found to make the image equally dark with increased contrast and saturation is to go to View -> Proof Setup -> Custom and then click the drop-down menu next to "Device to Simulate" and select "LCD1990SXi ####### 2011-06-21 18-30 D65 2.20" again.
    Alternatively, to make both images equally light and washed out I can go to Zoombrowser -> Tools -> Preferences and check the box next to "Color Management: Adjust colors of images using monitor profile."  This makes the image in Zoombrowser appear just like it does in CS5 by default.
    Like I said, I'm confused as to which setting is the accurate one (I'm new to Color Management in general so I apologize for my ignorance on the subject).
    It would seem that assigning the LCD1990SXi profile in CS5 would be the correct choice in order to match the monitor calibration given the name of the profile but the "Adjust colors of images using monitor profile" option in Zoombrowser sounds like it would do the same thing as well.  Also, I've read that Photoshop is a color managed software whereas Zoombrowser and Windows Picture and Fax Viewer are not which makes me think that maybe the lighter/washed out version seen in Photoshop is correct.  So which version (light or dark) is the accurate one that I should use to view and edit my photos?  Thanks in advance for any help or info.

    Sorry for the late reply;
    But before we go there or make any assumptions, it's important for
    you to determine whether you're seeing consistent color in your
    color-managed applications and only inconsistent color in those that are
    not color-managed.  For that you'll need to do a little research to see
    if the applications in which you're seeing darker colors have
    color-management capability (and whether it is enabled).
    I opened the same picture in 7 different applications and found that the 6 of the 7 displayed the photo equally dark with equally high contrast when compared to the 7th application (CS5).  The other 6 applications were Zoombrowser EX, Digital Photo Professional, Windows Picture and Fax Viewer, Quicktime PictureViewer, Microsoft Office Picture Manager and Firefox.
    However, at least two of these programs offer color management preferences and, when used, display the photo (from what I can tell) exactly the same as Photoshop CS5's default settings.  The two programs are two Canon programs: Zoombrowser EX and Digital Photo Professional.  Here's the setting that needs to be selected in Zoombrowser in order to match up with CS5 (circled in red):
    And here's the setting in Digital Photo Professional that needs to be selected in order to match up with CS5 (again, circled in red):
    *Note: When the option above "Monitor Profile" is selected ("Use the OS settings") the image is displayed exactly the same as when the monitor profile is selected.  It's only when sRGB is selected that it goes back to the default darker, more contrasty version.
    So with the red-circled options selected, all three programs (CS5, ZB, DPP) display the images the same way; lighter and more washed out.  What I'm still having trouble understanding is if that ligher, more washed out display is the accurate one or not...I've read several tutorials for all three programs which only make things more confusing.  One of the tutorials says to always use sRGB if you want accurate results and *never* to use Monitor Profile and another says that, if you're using a calibrated monitor, you should always select Monitor Profile under the color management settings...so I'm still lost, unfortunately.
    What I also don't understand is why, when the monitor profile is selected in CS5, the image is displayed in the dark and contrasty way that the other programs display it as by default but when the monitor profile is selected in Digitial Photo Professional it displays it in the lighter, more washed out way that CS5 displays it using CS5's default settings (sRGB).  Why would selecting the monitor profile in DPP display the photo the same way as when sRGB is selected in Photoshop?  And vice versa...why would selecting the monitor profile in Photoshop display the photo the same way as when sRGB is selected in DPP?
    I feel like I'm missing something obvious here...which I probably am.  Again, I'm very new to this stuff so pardon my ignorance on the topic.
    By the way, I find that the way that the non-color managed programs (Windows Picture and Fax Viewer et al.) display the photos is more aesthetically pleasing to the eye than the duller, more washed out display that CS5 gives the photos, but ultimately what I want to see in these programs (especially PS5 where I'll be doing the editing) is the accurate representation of the actual photo itself...i.e. what it's supposed to look like and not a darker (or lighter) variant of it.
    So just to reiterate my questions:
    Why does selecting Monitor Profile under the color management settings in DPP give the same display results as the default sRGB profile in CS5 and vice versa?  (CS5 with monitor profile selected having the same display results as DPP with the sRGB profile selected)
    When using CS5 with it's default color management settings (sRGB), using DPP with the Monitor Profile selected, and using Zoombrowser EX with "Adjust color of images using monitor profile" selected this results in all three programs displaying the same lighter, washed-out images...is this lighter, more washed-out display of the images shown in these three programs the accurate one?
    I noticed when opening an image in Firefox it had the same darker, contrasty look as the other non-color managed applications had.  Assuming that the CS5 default settings are accurate, does this mean that if I edit a photo in CS5, save it, and upload it to the internet that other people who are viewing that image online will see it differently than how it's supposed to look (i.e. in a non-color-managed way?)  If so, this would seem to indicate that they'd see a less-than-flattering version of the photo since if their browser naturally displays images as darker and more contrasty and I added more darkness and contrast to the image in CS5, they'd be seeing a version of the photo that's far too dark and probably wouldn't look very good.  Is this something I have to worry about as well?
    I apologize for the lengthy post; I do tend to be a bit OCD about these things...it's a habit I picked up once I realized I'd been improperly editing photos on an  incorrectly calibrated monitor for years and all that time and effort had been spent editing photos in a certain way that looked good on my incorrectly calibrated monitor but looked like crap on everyone else's screen, so the length and detail of this post comes from a desire to not repeat similar mistakes by editing photos the wrong way all over again.  Again, thanks in advance for all the help, it's greatly appreciated!

  • Dual monitor color settings seems to be messed up cs4

    Hi
    My daughter has this setup
    AMD 9550 quad 2.2mhz machine, Windows 7 ultimate. latest updates
    ATI Radeon HD 5700 gpu card (latest driver)
    Two LCD monitors
              1. LG 2361V HDMI (main)
              2. Cintiq 21UX (Extended)
    Both monitors are calibrated, and have the latest driver updates. It does not matter which monitor is the main one.
    PS cs4 also has the
    1. If i load a photo in fireworks and drag the application back and forth accross the two monitors, the image looks virtually identical.
    2. If i load the same photo in PS (cs4 11.0.1) and do the same, the image looks perfect in the LG but immediately darkens when on the Cintiq.
              a. The darkening is not instantanious. It looks good for about one second before it changes.
              b. If I hover the image between the two monitors, then the darkening only is applied to half of the image.
    3. If i change the preferences to not "color match" (in the performance->open GL) then the image does not darken and it remains loyal to the color profile in place. But!!!! the navigator and color selection tools remain darkened while on the Cintiq. So if she chooses a color from the tool, it paints a different color on the canvas.
              a. If I modify the color settings, then the modification affects both monitors display and the difference issue does not go away.
    Ideally we want to be able to select a color from the palette and have that color be what is painted onto the canvas. We also want the image to appear as similar as they do in fireworks.
    While Color Matching is checked:
    On the cheaper monitor, the image and the navigation pane always has the same color appearance. when i change the color profile, the change is reflected in both the canvas and the navigation pane.
    The same is true on the Centiq, but the image and navigation pane is always darker than on the other monitor.
    While Color Matching is UNchecked:
    The color selection tool and the navigation panel are affected but the canvas is not. But the two monitors canvases match.
    So. in order for the navigation and color selction tool to match the canvas, the color matching needs to be checked.
    But this creates the darkening on the cintiq. No matter what profile i choose, the cintiq is too dark. and photoshop is doing it because fireworks does not do this.
    How can i set it up so that all the colors are true to the profile, and match the nav and color tools?
    Thank you
    Any ideas will be appreciated.
    Jerry C

    Thanks
    @Noel
    It sounds as if the monitors are using two quite different profiles, which may indicate the calibration is off a good bit on one of them and the profile was generated to compensate.  The clue here is that you see a change when you move a document from one to the other, and that temporarily (while an image crosses both monitors) you see quite a difference in it.
    If you drag an image in a non-color-managed application across both monitors, so that specifically part of it is shown on one and part on the other, how different do they look?
    Using fireworks or MSpaint or IExplore, an image looks pretty much exactly the same on either monitor as well as when spanning accross both.
    The two monitors are clibrated so that all colors match on both monitors.
    http://www.lagom.nl/lcd-test/
    The Cintiq has a better contrast ratio so the whites are slightly brighter.
    But!!!  If the moitors were not calibrated, then a fireworks image would look different on each screen. In fact they look exactly the same on both.
    Even when the image spans accross the two screens.
    It is only Photoshop that darkens the part of the image that hangs onto the Cintiq. And it is very dark.
    Even in the famed "Monitor mode", the image is much darker than is is in IIE or MSPaint or Fireworks.
    I dont want to disable the color profiling, as it is important to see what the target will look like.
    But i do want to see what the target will look like! right now it is way to dark. No matter what profile i choose.
    Also my examples are more to demonstrate the comparrison between the two monitors, but the goal is to get PS CS4 to work on the centiq. It would be nice to have the navigator and some panels on the other monitor and have the colors match, but more important is to have the colors on the cintiq look normal at all!
    Thanks so far. but we are still messed up.
    Jerry C

  • Lack of useful components for application developer :-(

    I want to share some remarks about our rewrite old Windows application to new AIR/flex application.
    If any Adobe staff will reading this it will be great :-)
    For colorfull web application with exotic buttons is Flex undoubtedly great choice.
    But there is many developers (and firms like us) who looking for something little different.
    We got bunch of Windows application written in Delphi. And we want (must) to move to another technology.
    AIR is superior in language, runtime, simple move-to-web, blazeDS, tools and ecosystem growth is promising.
    The only bad thing about Flex/AIR is UI. Yes, you hear right. UI is our biggest show-killer. And I am afraid that even with spark it will not be better.
    We wrote application not coloring-book.
    So we want only basic but state-of-the-art UI-standard componnets.
    ToolBar, CoolBar, Button with three states, Button with icon and auto-disabled-grayed-icon, etc..
    1) I found on the web three technique how to add icon on the spark button. Two of them include skinning. Absolutly confusing!
    2) No useful CoolBar. How long it takes make CoolBar like in Adobe Acrobat Reader or MS Word in my application? This is matters for me!
    I dont want two or three full-time developers extra for making basic components for us.
    In this point Silverlight got 100% lead. No doubt.
    http://www.componentone.com/SuperProducts/StudioSilverlight/
    http://demos.devexpress.com/AgMenuDemos/
    We still evaluate both technologies. We like Flex because is more JAVA friendly that SilverLight, but lack of usefull components will be final dead-end.
    Am so sorry.
    Know Adobe staff about this issues?
    Want Adobe application-developers or only web-developers?
    Planning Adobe making application components in the future or is satisfied with current state?

    One thing is what is technology is better for me. More jobs in the future.
    Another thing is what is better path for migrating a lot Delphi application.
    Is realy so hard to make simple, nice and usefull toolbar in Flex? I cant find anything. So maybe I must try myself :-(
    What you mean with "Microsoft can no longer execute on new technologies well"?
    My main question in previous post should be "what about lack of useful components".
    And I expected one of this answers:
    Adobe is happy with current state. Main Adobe bussines is colorful web-application.
    Adobe know there should be rich components, but now has no time. In the near future Adobe deal with it.
    I am dummy person and making great "toolbar" is easy as a piece of cake.

  • Color Management In Various Web Browsers For Untagged Images Broken Since 10.8 Upgrade

    I have recently updated my early 2008 Mac Pro to 10.8 and have noticed that neither Safari, Firefox or Chrome handle untagged images correctly anymore. Instead of assuming sRGB as the ICC profile for an untagged image (like they did prior to upgrading), they now just convert to monitor profile which looks over-saturated on my wide gamut monitor (Dell 3007WFPHC, hardware calibrated with a Datacolor Spyder 3 Pro). Color management in Photoshop, Lightroom and all other previosuly color-aware applications appears unaltered. The interesting thing is that in Safari, if I open a link with "open in new tab", the untagged images are rendered as if their color profiles are sRGB and are displayed correctly! But just clicking the link in the same tab or "open in new window" results in the incorrect over-saturated colors. This doesn't make any sense. Anyone else have this same issue?

    After digging around, I found that the behavior of Firefox can be changed to assume sRGB on untagged images by putting about:config into the address bar and changing the value of gfx.color_management.mode to 1. I vaguely recall doing something similar for Chrome years ago, but can't for the life of me rememebr what I did. When upgrading to 10.8, I did a fresh install so any mods to Chrome are no longer present.
    As for Safari, I have never really used it and only notcied it behaved similarly when trying it because Chrome wasn't working. Still can't figure out why Safari works correctly when you select "open in new tab" though. Maybe this should be moved to the Safari forum?

  • ADOBE PHOTOSHOP CS6 COLOR PROBLEMS

    hi i have a problem on adobe cs6, i am a photographer and i work heavily on my pictures, sometimes with graphic techniques(like lens flare, light leaks etc) and sometimes just with camera raw. i have this problem in the sense that i am satisfied with how the final image looks on my monitor but when i send these pictures to both my phones (AN HTC android and a blackberry q5) the images look over saturated, the colors are too contrasted and are too deep, everything looks like i over edited it and i dont understand. my laptop monitor supports 32-bit imaging and its set to that by default, but my picture mode in photoshop is set to 16-bit by default, please help as i dont know what to do, could it be my monitor thats rendering false colors? i read something about changing color spaces to between sRGB adobe RGB and ProPhoto RGB but i just dont understand anything, please help
    laptop specs:
    toshiba satellite a665-s6050
    intel core i3 350m @2.2ghz
    intel hd 3000 graphics card
    adobe photoshop cs6.1 with the latest camera raw

    What is the images’ Color Space and do you embed the profile when saving?
    In all probability your phones are simply not color managed.
    So while converting the images to sRGB might improve the situation the issue may be that you are expecting what’s pretty much impossible – that images appear identically in color managed applications and on non-color managed devices.

  • Color space problem/confusion

    I posted the following message to another thread, but at the recommendation of a member I am starting a new thread here. For a couple of answers see the thread below.
    http://forums.adobe.com/message/3298911#3298911
    I will provide much more information hoping an Adobe support person will chime in. This is extremely odd.
    System: HP, AMD, Windows 7 64-Bit, Nvidia 9100, all updates to Windows, latest Nvidia 9100 driver
    Display: Samsung 226CW, Windows settings 32-bit color, correct resolution,
    Calibration: Done with ColorMunki, D65 target, done after monitor has been on for more than 30 minutes
    Personal:  (I am adding this information with some hesitation, please excuse it if  it sounds like I'm bragging; I am not). I have multiple posts on my  blog, have made many presentations on color managed workflow and am very  comfortable with the settings in Photoshop and Lightroom. Please take  this only as a baseline information, I am not bragging. In fact, I am  begging for information!
    Problem:
    Any, I mean ANY,  original JPEG image in sRGB space coming out of the camera with no  adjustments, any PSD file in sRGB space, any TIFF file in sRGB space  look significantly paler in Lightroom and in Photoshop CS5 than they  look in other Windows based image viewers like FastStone or XnView. This  should not need these applications to be color space aware, but the  situation is the same with or without their color managment turned on or  off. I have done the following:
    1. Totally uninstalled Lightroom 3 and reinstalled it
    2.  Recreated a brand new Lightroom catalog/library and reimported all the  images, converting all the RAW files to DNG (just in case!)
    3. Recalibrated the display
    When  I view a file, any file and I will use for the sake of simplicity a  JPEG file in sRGB color space, in Lightroom it looks pale. Since the  file is in sRGB color space, I have verified this, the rendering in  Lightroom should be the same as rendering in anything else. But it is  not. I took my monitor and connected it to this system with the same odd  behavior of rendering in Lightroom being much paler than outside. It  appears as if I am viewing an image in Adobe RGB in a windows viewer  that is not color managed.
    I further tried the following:
    1.  I copied various versions of one file, all in sRGB color space. One PSD  and two JPEG files from the folders of the above system and copied them  to my system, Intel, Windows 7 64-bit, display calibrated and profiled  with ColorMunki to the same standards as the problem system above.
    2. Imported them to Lightroom on my system
    3.  The rendering in Lightroom is identical to rendering outside Lightroom  for all the files and all are same as the rendering in FastStone on the  problem system. Outside rendering was done using FastStone as on the  problem system.
    My deduction is that something on the  problem system outlined in the opening of the message is interfering  with the Adobe rendering engine and I have no idea what it could be. I  WILL GREATLY APPRECIATE if an Adobe engineer could chime in and steer me  in the right direction. I am willing to try other things but I have run  out of ideas despite the fact that I have reduced much of the problem  to the lowest common denominator of sRGB and JPEG against a PSD in sRGB.
    Waiting anxiously of your help.
    Cemal

    Also, I know enough to calibrate a monitor when it is connected to a new computer. That said, even without calibration the behavior should have changed to display all the images in question the same but perhaps with somewhat off colors. Am I right? I am not arguing the point, I am rhetorically raising the question. If the 226CW is wide gamut and 244T is not, when I connect 244T on the same computer the wide gamut issue should be eliminated, should it not? I am not talking at this point about the "correct" color, but the same color in or out of Lightroom.
    Unfortunately when you connect another monitor to a computer and don't calibrate or manually change it, Windows will not change the monitor profile. Macs will autodetect and change the profile but this innovation has not reached windows yet. The behavior you observe is caused by managed apps using the monitor profile and unmanaged apps not. If the monitor profile is not changed, the behavior doesn't change.
    BTW, for a "cheap" software to be color space aware it does not need a quantum leap in technology I believe. It simply needs to know how to read the ICC profile and the LUT, is that correct?
    It's extremely simple to program color management into apps. Standard API libraries have been available in Windows for over a decade. The reason why this hasn't happened is related to the fact that Microsoft hasn't made IE color managed and the software makers do not want to confuse folks when images look different in their program vs IE. Considering that this still is the biggest issue people wrongly complain about in every color managed application (just check Photoshop fora) that is maybe not that strange.

  • Save for the web colors

    I was having trouble with image colors when I used 'save for the web' and I found a couple of solutions in tech notes regarding embedded color profiles but there is some thing I just don't understand.
    It says:
    "To ensure that colors are consistent in Photoshop, ImageReady and the Save for the Web dialog box, use an embedded color profile for display in each, or preview the image in Photoshop using the monitors RGB color space. Note that if you use an embedded color profile for display, colors may appear incorrectly if you view the image in an application that cannot read color profiles."
    Can somebody give me the lowdown on what exactly a color profile is (what it does, when you should embed one etc) and some examples of the kind of application that can't read them i.e. if I send the photos via e-mail can the profile be read? put them on a web page?
    Thanks for any illumination!
    j.

    A profile is a file that decribes to applications that can read them the color and tonal characteristics of a particular device. A profile can also be a mathematical description of a particular RGB or CMYK Lab color space. You've probably seen RGB working spaces in Photoshop referred to in terms like sRGB, Adobe RGB, ProPhoto RGB, etc. Any application that is color managed and can read and use profiles needs a minimum of two profile to to the job - a source profile and a destination profile. When you're looking at images on your computer monitor, the source is your RGB working space and the destination is your specific monitor. Photoshop uses both the working space profile and the monitor profile to display your image correctly. Most other applications in Windows do not read profile and have to assume either "Monitor RGB" or sRGB as the source for the file. If your file is not one of those, then false asumptioins are made and the image does not appear correctly. Some web browsers like Firefox 3 and Apple Safari do read profiles but not necessarily by default. You have to turn the option in FF. Some email readers are color managed, others not.
    Profiles can be and usually are embedded in the document when you save it. Unless you have a good reason for not embedding a profile, it's almost always a good idea. It adds 4K to the file size and will let someone down the line who is using a color managed application see the file how you intended it. You have no control over the others, but that's life online. Currentlyl the best strategy is convert files destined for the web to sRGB and embed the profiles. That might change in the future, but it's a good place to be right now.

  • Colors off in Preview when viewing JPG's with sRGB profiles

    I have a 30" Dell monitor and my display preferences are set to use the calibrated profile for it. When I view JPGs images in any color managed application such as Preview the colors are horribly off. They are kind of dull, unsaturated, pale. JPG's that don't have sRGB profiles show up fine.
    I can fix the problem in photoshop by opening the image and then doing a save for web which strips the profile information off of the jpg.
    If I use sRGB as my monitor's profile colors are consistent across all applications but the problem is the colors are really bad. Extremely over contrasty and very dark.
    What's going on with my color profiles?

    Hi topmodelphotography ..
    If you're keen about running the right profiles - please don't mess up the way you do. The sRGB profile that you're using is showing a narrower color space (value 0-16 of blacks are out). The sRGB profile is mainly used for consumer monitors in the cheap end where contrast conditions are worse that expensive and professional displays to present contents in a similar way across manufacturers. If you should use any predefined color profile, please use Adobe (1998) profiling.
    best practive is calibrating your monitor with a good calibrator and use these profiles.
    In System Preferences you should set up the calibrated profile and the same goes for all Adobe apps under Color Settings.
    Useful reading concerning Color Profiles:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=321382&sliceId=1
    Your issue with Preview is most likely due to erroneous setup in System Settings. otherwise try and disable Dithering in Preview.
    And don't use Save for Web if you intend to keep at least a minor part of your colors in your images. Use TIFF's where possible (without 'upgrading' images from compressed formats such as JPEG's, GIF's, etc.)
    useful reading about Image compression:
    http://en.wikipedia.org/wiki/Image_compression
    Hope this answers some of you questions.

Maybe you are looking for

  • How do I transfer Safari bookmarks from MBA to iPad2?

    I've spent way too much time trying to do this on my ownl  HELP!  Purchased a refurbished iPad2 from Apple online.  My local Apple store "set me up" with iCloud.  I expected this to move my bookmarks over from the MBA to iPad however, when I use Safa

  • I am unable to install/download the starterpack for Creative cloud and no one is helping at Adobe

    Please help , I am desparate, I have subscribed to The adobe cerative cloud solution since dec. 25 2013. I am unable to download and install the starter program . I was in contact with your on line chat room. They removed temp files, made folder acce

  • Shift + command + f   very slow with cs4 clone and healing tool?

    using cs4-- i use the shift + command + f a lot to fade in or out the clone tool and healing brush. however in cs4 the preview is very slow-- even though i have 8gb of ram! the same process on the same file in cs3 is rapid-- even with only 2gb of ram

  • Error in FI posting- J2IUN

    Dear All, In J2IUN simulation is working fine and and when i try to save system showing message ' ERROR IN FI POSTING'. We tried to utilize for the month of May 2009. Is the error beacuse of FI period closed? Please suggest how to overcome this error

  • Convert date to week of the year in Query designer

    Hi, I have a requirement to convert date ( a characteristic in the query) to week of the year. For eg. if the date is 01/11/2008 then the week to be displayed is 2008/44. Please not that the week is not populated in the Infocube of the same. So i nee