Colors change when compiling on different OS

Hoe can I ensure that colors in enter-query mode stay the same when I recompile my form (developed on winxp) on a different OS (say HP-UX)?
When I run my form locally in enter-query mode the queryable fields turn yellow, but when I recompile the same form un UNIX and run it there, the user cannot see that the form is in enter-query mode for the fields' colors do not change.
How can we prevent this?

I'm not sure if this could be a setting in forms\java\oracle\forms\registry\Registry.dat, but it does sound similar to the one in that file which makes required fields a different colour.
If not that then possibly your form links to a library that has different versions on either server?

Similar Messages

  • Keynote Bug: Object colors changing when opened on different machines

    I'm collaborating on a series of presentations with two other people all using Keynote 3.0.1 and we have discovered that the colors of imported graphics are changing (slightly) when we send files to each other. The same files remain normal on the machine that created them, but once that file is sent to another machine (via ichat, either archived or not), small color shifts appear within imported graphics.
    This makes matching an imported graphic to a background color a real pain as you can imagine. The shift is measurable with the color palette and is repeatable and consistent.
    Has anyone witnessed this?
    -joey wilson
    Powermac G5 Quad   Mac OS X (10.4.7)  

    I used to. Are you using CMYK graphics? I think the problem's with the color space. Try using RGB graphics and see if that helps any.

  • Color change when opening in Reader

    Hi, I created a PDF in Photoshop. I then added an editable field in Acrobat, using the same RGBs. When I open the file in Reader, the color of the editable field does not match. Any suggestions on what I can do to resolve this?  I have the most recent version of Acrobat and Reader.
    Thanks,
    Jackie

    Here is a screen shot of the reader PDF, followed by the original file in Acrobat. You can see that the entire document color changed when I opened it in Reader.
    THanks,
    Jackie

  • 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

  • Why do the colors change when I reopen a document?

    Why do the colors change when I reopen a document?

    Are you opening the same Pages document or do you open another document like Word? I has recently been a similar discussion in this forum.

  • Color changes when creating PDF in Acrobat X Standard

    I'm printing to PDF from Word 2010 by using Acrobat X Standard.  Here are the two issues:
    I have overlaid two text boxes (different colors) on top of each other.  The overall image should be blue on top and bottom with tan in the middle.  When I print to PDF in Word, the PDF is perfect; however, when I print to the printer, the blue on the bottom changes to purple, while the blue on top is correct.  Again, this is the same blue text box, so I don't know why the color changes.
    Also, the tan is a darker shade than what the PDF shows.
    Is this a printer issue or PDF settings issue?
    I'm new to using Acrobat, so any step-by-step help is very much appreciated!
    Thank you.

    Create Adobe PDF is a (by default) a LOSSLESS operation where Acrobat processes the Word graphics data directly into PDF.   Printing is a LOSSY operation that first has Word convert Word->”printer spool”, then the printer driver (Adobe PDF) converts that “printer spool” into Postscript, and then Distiller converts the Postscript into PDF.   As you might imagine, you get MUCH higher quality and fidelity results from the former.
    Have you verified that you are using the same color management settings in the printer from both Word and Acrobat?  Is the Konica configured for Postscript, PCL, other?  There are SO MANY possible options that could be impacting your configuration…

  • Why does JButton background color change when  clicking ?

    Hello,
    I have defined :
    JButton mybutton = new JButton(Icon xxx) ;
    with no associated text and I set both foreground and background colors to black, and an empty border.
    This is because the background color of the container which contents this button is also black and I want to see only the button icon.
    When I click on the icon , the button background color becomes grey. How can I change this to make it remains black ?
    Thanks a lot.
    Gege

    Well, the color changes because that is how the look and feel is defined,
    presumably to give better feedback to the user that she has clicked the
    button.
    If you don't want this, you could try using a different L&F which doesn't do this.
    Alternatively, If you've only got the one button, you could just do
        UIManager.put( "Button.select", Color.BLACK );If you have multiple buttons, and you want the other buttons to behave
    normally, you can extend the one button and have it change the color
    while it is pressed, e.g.,
    import java.awt.*;
    import java.io.IOException;
    import java.net.URL;
    import javax.swing.*;
    public class ButtonSelect extends JFrame {
         public ButtonSelect() throws IOException {
              super();
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              panel.add( new JButton( "Normal" ) );
              Image img = Toolkit.getDefaultToolkit().getImage( new URL("http://www.google.com/intl/en/images/logo.gif" ) );
              ImageIcon ii = new ImageIcon( img );
              JButton b = new JButton( ii ) {
                   static final private String KEY = "Button.select";
                   public void paint( Graphics g ) {
                        Color save = null;
                        if ( getModel().isArmed() && getModel().isPressed() ) {
                             save = UIManager.getColor( KEY );
                             UIManager.put( KEY, Color.WHITE );
                        super.paint( g );
                        if ( save != null )
                             UIManager.put( KEY, save );
              b.setForeground( Color.WHITE );
              b.setBackground( Color.WHITE );
              b.setFocusPainted( false );
              panel.add( b );
              getContentPane().add( panel );
              pack();
              setVisible( true );
         public static void main( String[] a ) throws IOException {
              new ButtonSelect();
    }

  • Why are my colors changing when copy and paste a graphic from docA to docB both in illustrator?

    Both documents in Illustrator CC are RGB and I'm trying to copy a logo onto a template, but the color of the logo completely changes when I copy and paste it into the template. The logo has three different pinks and they turn red when pasted. There is no graphic styling and the logo is all gradient.

    What is weird is that we get a lot of logos from the same company and we put it on shirt templates so they can see size wise on how it would look on shirts. It's happened with other logos, but very slightly. I asked my co-worker who sends me the logos what version she uses and she also uses CC but does not know what version the other company uses. To them, it doesn't matter if the logo colors get altered, they have the PMS colors to work off of for screen printing. I just want to make sure that if another company sends us logos with PMS colors, we will know how to fix it.

  • Text color changes when more than one color is used in the same paragraph in a bulleted list

    I work in a print shop on designers' files preparing them for print. Machine I use is an iMac, plenty of RAM, running Tiger 10.4. Here is my problem: A PC user sent us an InDesign CS3 file. A portion of the text is styled as a bulleted list with character color and bullet (the solid circle) defined as (default) black. However, the style is over-ridden on the bullet and first two words following the bullet with a spot color red, which is present in the Swatches palette (PMS 186). The remainder of the sentence stays black. The text somehow lost this override, and instead of keeping the 2 different colors all the text changed to black. This seems to have occurred when I saved the file on my machine. When I go back and open the original file the text is still colored both red and black. I think that the file was originally an InDesign CS2 file, and could even have been a Indd version 1 or Quark file. Why did the color change with no user intervention? Also, I can't understand why, when the first 2 words are highlighted and changed to red, the bullet also changes to red. (That is good, of course, because that is what we want, but I don't understand how that happens when the character style is black, and I can't even highlight the bullet itself). I sure would appreciate any ideas anyone has on this, I have to try to explain why we printed the text in black when it was supposed to be red and black!

    thanks Alan and Bob. Nothing has explained the loss of color so far.
    Alan, I will suggest to the designer that she use a nested style. I wonder if that will make the styling more stable moving accross the different platforms.
    Bob, I feel like you may have thought, as I did, that hundreds of saves and saved-as and many different applications would have damaged the file, but as you could see by the History, the file was fairly fresh.
    There is a very outside chance that I wiped out the style overides by command click but I am really careful and I doubt it.
    So I'll thank you both again and check back each day, perhaps this will happen to someone else and become an issue. I have tried to repeat my actions and cause the error again but to no avail.

  • Why do filler colors change when the orientation changes?

    Hi, I'm working with a template but don't like the colors of the fill boxes, so I have manually changed them.  I've noticed, however, at least when look at a proof that when I change the orientation of the iPad, the filler color reverts to the original.  The color change screws with the styles.  Anyone else have this problem?  Any fixes?

    Thanks for your reply.  I was fuzting with the "book" again.  It was the simplest -- and therefore easiest to modify stylistically -- template, which was supposed to work in both orientations.  I created it in landscape.  Last night I reallized that when I changed the orientation when working in iBook, if I applied the color change to the boxes [again], the color change stayed when viewed in either orientation. 
    BUT I also saw that the box placement in the portrait view is "wrong."  It covers part of one of the headlines.  While I have changed the headline font manually [not via paragraph styles, which I am finding difficult to manipulate], I have not moved the text.  It is where the template placed it but simply using a different font. 
    Thanks for any insight you might have.

  • Colors change when saving to PDF from InDesign

    I admittedly don't understand color handling, no matter how much I seem to read about it. Lately my files that I've been exporting to PDF from Indesign have looked slightly different and odd to me once they're converted to PDF. Sometimes the colors are dull, sometimes the drop shadows are a weird grey... Here's the latest example. Perhaps someone has some wisdom for me here...
    I created this poster in Illustrator. Here's how it looks in Illustrator:
    Then I went into Indesign and linked the file. (this is strange...) When I display the file with "typical display", it displays as such:
    That looks pretty good... But when I set the display to "high quality display", I get this:
    This is also the result I get when I open the exported file in Adobe Acrobat Pro. Why the color change?
    Any ideas?
    Thanks!

    Thanks, Will...
    So, upon investigating, I realized that my color space in Illustrator was RGB... Damn... I must have overlooked that... When I convert (in Illustrator) to CMYK, I get those strange colors again.
    When I export to PDF, the Output is "no color conversion", so it's not being converted to CMYK yet...
    Plus, I just linked the AI files in Indesign when I placed them in there.
    So, Indesign must be converting the file to CMYK? And that's why the colors change once I convert to PDF? What do you think?
    Also, I used InDesign to place the files so that I could create a 2-page pdf easily that the printer could work with. I had a 4-up handbills page in there that I was planning on printing as well.
    So, if this looks best in RGB, what do you think about me sending an RGB file to the printer and then printing it that way? I've been told that RGB is no good for printing, but I've also read otherwise as well...
    Thanks again!!

  • Color change when exported

    Using Lr4.1 on PC w/ win7pro laptop with external NEC multisync mmonitor-calibrated,  I've taken Raws made LR adjustments, then imported 3-10 images into photoshop layers for masking, merges, few if any color changes.  Then save as all layers as a psd, then flatten the psd and save as a tiff.  When I open in LR for any other minor tweaks, sharpening, dust spots, and do an export into SRGB or Adobe rgb, the colors are terrible.  Look nothing like what I see in LR.  I've heard people have minimal issues, but I am having major changes,  many times the collors will become dull and flat or very saturated when viewed.  As an architectural photographer I need these colors close to what I took.   If I edit in CR into PS I don't have this problem.  I assume its related to the prophoto RGB color changing, but I really don't know what's going on with the color space.  The color will appear different from my laptop monitor to the NEC by a lot which I understand a pro monitor will show more colors, but the color space shift is making a lot of work done in LR useless if I have to redo it all in CR.  How can I get LR to export the colors I see in LR into a srgb jpg and Adobe tiff?
    Thanks

    Lots of steps here:
    "Using Lr4.1 on PC w/ win7pro laptop with external NEC multisync mmonitor-calibrated,  I've taken Raws made LR adjustments, then imported 3-10 images into photoshop layers for masking, merges, few if any color changes."
    How do you get them into PS?  What do you mean by "imported 3-10 images into photoshop"?  Do you mean you use "Edit in.." from LR, and choose "Open as layers in Photoshop..."?
    "Then save as all layers as a psd, then flatten the psd and save as a tiff."
    How does it look in PS?
    "When I open in LR for any other minor tweaks, sharpening, dust spots"
    How do you open in LR?  The normal process, after "Edit in..." is that you save in PS, and the image is automatically stacked in LR against the original (or one of the originals, if you open several by "Open as layers in Photoshop...").  How does it look now?
    "and do an export into SRGB or Adobe rgb, the colors are terrible.  Look nothing like what I see in LR." 
    Only now they look terrible?  They looked OK in LR originally, OK in PS, OK when back in LR, but when you export they look bad - is that right?  And as Victoria says, how are you viewing the exported images? 
    "I assume its related to the prophoto RGB color changing, but I really don't know what's going on with the color space." 
    It certainly shouldn't be due to colour space changing.  The whole point of colour management is that it deals with this. 
    Final points:  you say your monitor is calibrated.  You do mean calibrated and profiled with a hardware instrument (Spyder, Colormunki etc)?
    And, color settings in Photoshop, they should look something like this:
    Choice of working space should be ProPhoto RGB, Adobe RGB or sRGB, but not a monitor or printer profile.  Policies should all be "Preserve" and I recommend all the "Ask When" boxed be checked (so you are warned of mismatches). 

  • Color Changes When Importing onto Another Computer

    I'm not sure if this is an Illustrator issue, but since I'm using Illustrator, I'm hoping maybe someone can help.
    I made a graphic in Illustrator that I exported. I then put that on a flash drive, took it to another computer, and imported it into software called Lectora (not Adobe related). However, my colors changed greatly. The orange wasn't too bad, but the purple is a huge difference. My company has specific colors, so it's a huge deal to make it the correct shade of purple.
    I don't think it's the software because if you open the graphic on the computer in general, the colors are different. I tried on a third computer, and the colors are still different, so that brings me back to some setting on my original computer.When I open the graphic on my computer outside of Adobe, the colors are what I want.
    The document is RGB, 72ppi. I tried exporting as png, tif, jpeg, bmp, gif (transferred to photoshop), 72ppi, 300ppi, etc.
    Also if it matters, from my original computer to the printer, it prints the different shade of purple rather than what i see on my screen.

    Carla,
    There may be differences in the colours on the different (and possibly differently calibrated) monitors (and between different applications).
    There is probably a significant difference in colours between RGB and CMYK; unless you are using a non PostScript printer (driver), the printer needs CMYK; you should create the CMYK colours by creating a version (the basic print version) in CMYK Color Mode.
    Normally, if you want to make sure that you can print the colours in CMYK, you should start with CMYK.
    Obviously, if the intended (main) use is for screen/web and the print is only secondary, you may work in RGB and live with the colour differences in print; or you may use a (non PostScript) printer with more inks.
    Yet another option is to use spot colours, but that is a further complication.
    Have you used colour management?
    You may start reading the basics here (the articles also apply to Illy, though written for PS).
    http://www.computer-darkroom.com/ps8_colour/ps8_1.htm
    http://www.computer-darkroom.com/home.htm

  • 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).

  • Cell/Background color changes when copying to other Excel 2010 document

    When you copy and paste report cells (e.g. CO report outputted in Office integration, MS Excel) to a new Excel file, the background color changed dramatically (to bright red).
    SAP Theme:  SAP Signature Theme
    Excel 2010
    We tried paste option > match destination formatting but does not help.
    Anyone has similiar problems?  Appreciate any help.

    dear friend,
    you would do:
    1. search SAP Notes;
    2. check out the updates/patches for your MS Office;
    3. replicate it on another computer/another sap user (make sure it is a local issue)
    good luck!

Maybe you are looking for

  • Skillbuilders modal from chart link

    I'm at a loss as to how to call the skillbuilders modal from a chart link (click on point in series). I'm able to call a classic report residing in another page but I can't figure out how to get it to appear in a modal. I created examples on apex.ora

  • I can´t delete files in trash. It stops after a short time undone. What can I do?

    I can´t delete files in trash . It stops after a short time undone. What can I do? There are 52 files in trash, but if I click the button "sure empty" it shows 11.313 files to delete . I would be very greatful for your help!

  • Exporting 16:9 Xl1s footage-again.

    I am a recent FCP convert from Sony Vegas and am extremely confused by FCP's exporting preferences. I have been reading the multitudes of posts, tutorials, blogs etc about exporting 16:9 footage from FCP. None of them have seem to answer my questions

  • Numerious LOAD_PROGRAM_NOT_FOUND dumps

    Hello Gurus, I'm getting like 30 short dumps on production daily: LOAD_PROGRAM_NOT_FOUND Program "GP3T9VZ87YU75ZSS0SO621KH46Q" not found. On account of a branch in the program (CALL FUNCTION/DIALOG, external PERFORM, SUBMIT)or a transaction call, ano

  • Leopard and Epson crisis!

    I have an Epson Perfection 2450 scanner at home (and 5 at work where I teach graphic design). We have upgraded to OS 10.5.1 and to Adobe CS3. We left CS2 on the computers. We could not scan using CS3 Photoshop (though CS2 still worked) and so upgrade