Global Color Replacement throughout document

I am trying to figure out a way to globally replace/swap one color for another within a document. My document would have multiple layers made up of solid color fills, text layers (possibly multiple colors within the copy block), and even possibly the color put into a bitmap import.
I am looking to better a workflow process in photoshop for updating website/interactive files. Sometimes this might work for updating global font color, layer effects(stroke/drop-shadows...), color layers, etc. The color swap that i am looking for is similar to if you were to update a swatch in InDesign. It would update everything using that specific color.
Any help figuring out how to update a file in this way would be great help and appreciated.
Thanks!

Hey Melenium,
Thanks for the response. I am not exactly following. I am guessing you mean to make all of the same colors the same grey value? but not sure how to add a 'gradient tint adjustment'

Similar Messages

  • Global color replace in Keynote '09

    I use my own palette for my keynote presentations, using each color for a specific purpose consistently throughout. But I usually want to fine-tune these colors when I ultimately connect to the projector I'm going to present on, to compensate for both the projector's color capabilities and the room lighting. Is there a way to do this quickly, to change a color in a palette globally across the entire presentation? Or do I have to define a new color and change each diagram individually? What do you experienced keynote folks do to solve this problem? I'm a bit of a keynote newbie...

    Welcome to the discussions, anthonysan.
    There isn't a way within the program to do it, however it IS possible I think. I'll give you some tips to start down that path, and, if you have any questions, just post back here.
    First, go to Keynote preferences and, under General Preferences, choose "Save new documents as packages". Next, create a new document (white theme), change the Master to blank, and place three rectangles on the first slide, each with an EASY to define color. (By "easy to define" I mean pick colors that you would be able to discern numerically, for example 100% red, 100% black, 100% green, etc.) Finally, double click inside each shape and add some unique text. I'm using "firstone", "secondone", "thirdone".
    Now, save that document, then right-click (two-finger-click, control-click) on it's icon in the Finder. You should see an option to Show Package Contents. Select that and you should then see a few folders and some files. You're looking for index.apxl.zip. Double click that one to unzip it, then put the .zipped version in the trash (Keynote can read either just as well). Now, you should have an index.apxl file.
    When you double-click the index.apxl file, you'll have to choose to open it with TextEdit, then search for your unique text "firstone".
    Things get more detailed from this point, but it does lead to a potential solution. Let me know if you're following so far, and we can look at the mysteries within they Keynote file

  • Find a color in a document

    Hello,
    I feel I was able to do this once and now I cannot find it.
    I am using INDCS3 and I thought I could use the find and change to find a color in the document, see where it is being used and change it if I wanted.
    Is that possible?? I thought it was??
    thanks!
    babs

    Babs,
    Not sure if your asking this, but if you want to completely replace one color throughout a document with a different color that can be done.
    First make sure you have the "new" color in the swatch panel. Then, in the Swatch Panel, click on the color you want to remove, click on the trash can at the bottom of the panel, select the the color you want to use as a replacement.
    If the color you want to remove came into the document via an imported eps file it gets more complicated but I assumed you did not.
    Marvin

  • Coloring a Font with a RGB etc. without adding the color to the document swatches.

    Is there a way of coloring a font with a RGB, Lab or CMYK color without adding the color to the document swatches.
    The only way I know is to add a color to the swatches or use one that already exists.
    like
       app.selection[0].characters[0].fillColor=document.colors.add({colorValue: [255, 53, 160], space: ColorSpace.RGB});}
    This has the undesired effect of cluttering up the swatches when using a lot of colors.
    any ideas?

    Good Morning Uwe!
    After 3am by me 2am by you
    I had tried the link and it did download but I have cs5 cs6 and cc but not cs5.5 and all the scripts worked on them may because of the file conversion.
    So it looks like the following summary is all correct
    All documents new contain
    Swatches (Black, Registration, Paper and None) the index order will be the order that the swatches appear in the swatches panel
    And colors in an alphabetical index order
    named color "A" first "Z" last and then the unnamed colors.
    A such all new documents colors[-1] will be an unnamed color which we can duplicated to produce other unnamed colors taking note that the duplication must be process and not spot colors.
    So far so good, (not for long )
    Unnamed colors are not read only so if we make a positive effort to remove them we can do that.
    while (app.activeDocument.colors[-1].name == "") app.activeDocument.colors[-1].remove()
    We now won't have any unnamed swatches to duplicate and will have to resort to John's tagged text file method in 3 above.
    If there were no unnamed swatches and we try to duplicate colors[-1] and it was a color like "Yellow" then it seem's to crash indesign.
    Anyway the below method should always work (for regular non tint etc. type colors).
    // optimized for easy of use but not efficiency !!!
    var doc = app.documents.add();
    var p = doc.pages[0];
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "0mm", "30mm", "30mm"], fillColor: addUnnamedColor([0, 0,255])}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "30mm", "30mm", "60mm"], fillColor: addUnnamedColor([0, 255,0], 1666336578)}); // will be a RGB because of value
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "60mm", "30mm", "90mm"], fillColor: addUnnamedColor([65, 50, 102], ColorSpace.RGB)}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "90mm", "30mm", "120mm"], fillColor: addUnnamedColor([84, 90,40],"r")}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "120mm", "30mm", "150mm"], fillColor: addUnnamedColor([232, 0, 128],1)}); // will be a RGB
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "0mm", "60mm", "30mm"], fillColor: addUnnamedColor([29.5, 67.5, -112])}); // will be a Lab because of -
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "30mm", "60mm", "60mm"], fillColor: addUnnamedColor([100, -128, 127], 1665941826)}); // will be a Lab because of value
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "60mm", "60mm", "90mm"], fillColor: addUnnamedColor([24.5, 16, -29], ColorSpace.LAB)}); // will be a Lab
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "90mm", "60mm", "120mm"], fillColor: addUnnamedColor([36.8, -9, 27],"l")}); // will be a Lab
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "120mm", "60mm", "150mm"], fillColor: addUnnamedColor([51, 78, 0], -1)}); // will be a Lab because of the 1
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "0mm", "90mm", "30mm"], fillColor: addUnnamedColor([82, 72, 0, 0])}); // will be a CMYK because there are 4 color values
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "30mm", "90mm", "60mm"], fillColor: addUnnamedColor([60, 0, 100, 0], 1129142603)}); // will be a CMYK because of value
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "60mm", "90mm", "90mm"], fillColor: addUnnamedColor([84, 90,40, 0], ColorSpace.CMYK)}); // will be a CMYK
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "90mm", "90mm", "120mm"], fillColor: addUnnamedColor([67, 53, 97.6, 21.7], "c")}); // will be a CMYK
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "120mm", "90mm", "150mm"], fillColor: addUnnamedColor([0, 100, 0, 0], 0)}); // will be a CMYK
    function addUnnamedColor (cValue, space, docToAddColor) {
        docToAddColor = app.documents.length && (docToAddColor || (app.properties.activeDocument && app.activeDocument) || app.documents[0]);
        if (!docToAddColor) return;
        var lastColor = docToAddColor.colors[-1];
        if (!cValue) cValue = [0,0,0,0];
        if (space == 1129142603 || cValue && cValue.length == 4) space = ColorSpace.CMYK;
        else if ((space && space < 0) ||  space && space == 1665941826 || (space && /L|-/i.test(space.toString())) || (cValue && /-/.test(cValue ))) space = ColorSpace.LAB;
        else if ((space && space > 0) || space && space == 1666336578 || (space && /R/i.test(space.toString())) || (cValue && cValue.length == 3)) space = ColorSpace.RGB;
        else space = ColorSpace.CMYK;
        app.doScript (
            var newUnnamedColor = (lastColor.name == "") ? lastColor.duplicate() : taggedColor();
            newUnnamedColor.properties = {space: space, colorValue: cValue};
            ScriptLanguage.javascript,
            undefined,
            UndoModes.FAST_ENTIRE_SCRIPT
         function taggedColor() { // need to use this if no unnamed exists
                 var tagString = "<ASCII-" + ($.os[0] == "M" ? "MAC>\r " : "WIN>\r ") + "<cColor:COLOR\:CMYK\:Process\:0.1\,0.95\,0.3\,0.0><cColor:>"; // would make more sense to apply the correct value in the tagged text file but I can't be bothered !
                 var tempFile = new File (Folder (Folder.temp) + "/ " + (new Date).getTime() + ".txt");
                 tempFile.open('w');
                 tempFile.write(tagString);
                 tempFile.close();
                 var tempFrame = docToAddColor.pages[-1].textFrames.add();
                 $.sleep(250);
                 tempFrame.place(tempFile);
                 tempFrame.remove();
                 tempFile.remove();
             return docToAddColor.colors[-1];
        return newUnnamedColor;
    Shall apply the function to delete and replace swatch on the other thread at a more sane time
    Regards
    Trevor

  • Deleted global colors

    We get something called Deleted global colors, it corrupts the files and consisantly copies itself when you are copy and paste from one document to another. We have also noticed that we get the virus when the deleted global colors are not in the swatch palette. It is now showing up in the brushes palette.
    In order to get around this we have to place the document into a new file but this screws up the groupings and the masks.  Is there a fix?

    You have to do us a little favor and describe your set up Mac or PC version of illy something about the specs of your computer OS etc.
    Also the other software you use and perhaps the type of work you do in general as well as what you use Illy for.
    Also what about any plug ins you have or recently installed software and or fonts and any color calibrations you may have done and the software you mat have used.
    I am being very specific because you are pretty vague.
    My gut feeling is you have some third party software that is conflicting with Illy.

  • Global Colors issue, in Adobe Illustrator CS 3/4

      We have this issue where I work of colors remaining in swatches even when deleted, which for some reason creates huge files when saved, 1 gig + at times.
      The colors that remain in the swatch are all titled "Global Color", it is possible to select and delete them all, but it is just an illusion, as soon as you copy and paste anything from the document all the Global Colors return.
      I have browsed the web and seen no solution to the problem. I have many files infected with these colors and can upload a file somewhere for any one to investigate.
    Thanks.

    Same problem here. Any copying and pasting between documents spreads this. Here is what I have tried so far that has not worked
    Recovered the file using 'Content Recovery Mode = 1". Edited this in simpletext to remove all code that has "Deleted global colors" & the "Begin PluginObject: Object". There was lots of junk to remove and I got everything in between the open & close tags.
    Saved files as AI3
    Copied & Pasted all elements into a new document
    Removed all unused Brushes, Swatches, Graphic Styles
    Removed all layers & did a save as, the file is still 6mb with nothing in it.
    In my situation, 1000s of brushes reappear in the library(see images below) after any copy/pasting. I also had "deleted global colors"(see images below) reappearing but that has gone away since I cleaned up the code. The problem must lie in in the non-standard characters. I also am getting the HUH error(see images below) when saving. I stopped getting the swatch conflict error(see images below) after pasting, after I cleaned up the code. The file though is still huge, slow and any copying is really slow. Can't load CS5 trial here at work(to try out that new cleanup command), but am on CS4 Mac.

  • Adobe Photoshop CS5 Win 63 and 32 bit color replacement tool

    I opened a B/W jpg file, converted it to CMYK.  I have followed the directions from a few Color Replacement tool Help, etc.  I can't get it to work.  Converting Black to a lighter color, shows up very dark when it works, which is sporadic.  Very frustrating.  Open JPG file, convert to CMYK.  Select CRT, click Foreground color to a light color, select the black with one mouse click.  Drag to change color.  When/if it works color is very dark.  Doesn't work everytime.  Using the Color Mode and Sample Once.  Vista 64-bit with all SP's, CS5 32 and 64 bit, same results.

    I'm realyl not sure I understand why you try to use that workflow. A greyscale image is by all means devoid of all color and just contains lightness/luminance information, so there is actually nothing to replace. The times when it happens are probably just random compression artifacts that have a slight color fringe. With b/w imagery, you rather tint regions and that can be done using selections and adjustment tools or a global gradient map adjustment....
    Mylenium

  • Color replacement tool won't work at all

    Hi, I am using photoshop CS3 in 10.6.2. The color replacement tool is not a tool I have much experience with, but am wondering why it won't work at all. I have reset the tool to its default preferences and tried using it on multiple documents and with different users and it just won't work. Nothing happens at all. I have watched some tutorials on using the tool and it looks easy enough and quite straight forward to use. I have tried every setting for the tool and still nothing happens. I am working on the top layer and have not selected anything. I have tried merging all the layers onto one layer incase the tool wasn't working because it would only replace the color of what is on a layer.
    Thanks for your help.

    The mode is color. The sampling is continuous and the limits are contiguous. These are the default settings for the tool.
    I am noticing that the tool does work a little. I created a new document with 3 layers. The bottom layer is a white background. The middle layer has a blue square on it and the top layer is blank.
    I notice that the color replacement tool won't work on the white background layer or the top blank layer, but only works on the middle layer. Does the tool only work on  the same layer that has a color you are trying to replace?
    When I hit the command option shift  E keys to merge the layers into a copy, the tool only worked on the part of that layer that had the rectangle drawn on it and ignored the white part of the image.

  • Shades of a global color

    It's easy to create tints of a global color, and I really like how if the global color is changed, the tints are as well. But why can't you do the same for shades? It would be great timesaver for shading & highlights on artwork that might change color.

    Tints simply reduce the percentages of the color's existing component primaries, for both spot and process colors. Assuming subtractive color (CMYK document), creating shades of spot colors--and of process colors not containing K--would require addition of K (or the complementary primary, etc.) In the case of spot colors, the result wouldn't be a spot color any more. In the case of process colors, you would encounter ambiguities similar to those affecting black generation in RGB-to-CMYK conversion: just as there are myriad ways to generate K, there would also be many ways to darken a color.
    In other words, creating tints is a simple and unambiguous matter of decreasing existing percentages. Creating shades would not be a simple matter of increasing percentages, and would have to deal with color-specific ambiguities.
    JET

  • How do I add a background color to a document in Pages?

    How do I add a background color to a document in Pages?  I have made an invitation, with a photo in it, the text is in color, and I want to make the background pink instead of white.  thanks

    whoops sorry figured it out thanks!

  • Adobe Photoshop CS5 color replacement tool not working well

    I am using adobe photoshop  CS5, when I use color replacement tool it replace color with its own choice not mine and I have visited many blogs but no solution
    Please contact me at: [ links removed by admin ] I shall be very thankful

      This is picture before color replacement tool and this is after whereas i needed white backgroud and black foreground. I visited many blogs but couldn't do it correctly.

  • Is it possible to do a GLOBAL color change for both text and graphics in ACrobat XI?

    I used to do this using the Pitstop Pro plugin but now Pitstop is almost $900 and this is the only thing that I would use it for, not worth the investment
    I can change text color by selecting individual text items, but I want to change all of the red text into white text
    I also need to change all of the red graphics into white graphics and I can't figure out how to do that either
    I have a trial version of XI on a Mac and will buy it if it can do what I am trying to do, i.e. global color changes to both text and graphics
    thanks!!

    I have version 6, but it is way out of date, doesn't work on my current system, I downloaded a trial version of the new one, version 12 I think, now I have to decide if I can afford to buy it, it is not cheap!
    oops, sorry, I didn't read your entire message, aargh!
    I'll check with them if I can upgrade from this early version, thanks for the suggestion!
    (edited because I didn't read properly!)

  • PE7 Color Replace doesn't work.

    In PE7 I have scanned in a line drawing of a lily in black and white.  I want to change the black to a green - 666600.  I did Enhance - Color Replacement- tried different select tools, chosen eyedropper and selected all black lines, changed the replacement color to 666600, and clicked OK.  It is still black and white.  I have tried making a duplicate layer and doing the same thing, and still black line drawing.  What am I doing wrong?  I've referenced 4 books and they all say the same.  Is mine not working?  I can use the select tool and 3Pt  brush and do it that way, but it isn't accurate and could take forever.

    See this post for some ideas.
    http://forums.adobe.com/thread/653366
    MTSTUNER

  • The color replacement tool  does not exist in photoshop cs6

    Hi guys!
    I have a huge problem with my new photos hope cs6, it doesn`t have a Color replacement tool button, I mean this
    Icon
    In addition I searched category under brush tools but it doesn`t exist
    Just I have color replacement in
    Image > Adjustment> Replace color
    Is it the same with that tool

    Hi,
    the color-replacement tool is still there in CS6, "under" the brush-tool in the toolbar of photoshop-CS6.
    Reveal it by alt-click on the brush...
    did I understand your question right?
    If you want a tool-preset of the color-replacement like the other tool-presets in your screenshot,
    you choose the tool first and then you can make a new preset for your special color-replacement-tool,
    including size of your point etc...

  • Global color values differ between palettes and when converted (Adobe Illustrator)

    I have a swatch file with a bunch of global colors inside. When converting the global color to editable RBG in the Color palette, the values are correct. However, if I use the Eyedropper and sample the color, then double-click the boxes in the Tool Palette or Color Palette, the values are completely different. When the colors don't have the 'global' setting checked this doesn't happen. Does anyone know why?
    A lot of people are going to use this swatch file, and likely will use Eyedropper to select like colors, and with some peoples' workflow it's likely these incorrect values will creep in.

    philwiles wrote:
     ... my eps logo ..
    Why are you using EPS? It is kind of outdated format these days.
    EPS  does not support color profiles. The default Save as EPS options in Illustrator include CMYK conversion which changes the values. To avoid this uncheck "Include CMYK Post Script" in the save options. Then when you open the file in Photoshop the RGB  values will be the same and if you want it displayed the same, in Photoshop choose Edit > Assign Profile and choose the same profile - Adobe RGB in your case. The color settings in Photoshop will have no effect and can remain unchanged.
    If you do that using the same computer the colors will be identical in values and appearance. If you do it on different computers the values will be the same and the color appearance will depend on if both computers have been calibrated to display colors accurately.

Maybe you are looking for

  • Mono sound only

    This is a really annoying problem: I only get mono sound with my headphone jack - the builtin laptop speakers are doing fine, though. I had this problem a few days ago, I asked for help in another forum but right after that (after a reboot) it worked

  • Need Help with Errors

    Here is my code: import java.io.*; import java.text.*; public class InvTest public static void main(String args[]) //initialize a new inventory object //Inventory DVD = new Inventory(); int inventory [] = new Inventory[10]; inventory[0] = new Invento

  • How to add an entry to TNSNAMES.ORA?

    Hello, if I add the following entry to the TNSNAMES.ORA: test1_10.121.34.56 = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.121.34.56)(PORT = 1521)) (CONNECT_DATA = (SID = test1) (SERVER = DEDICATED) how could I activate it ple

  • Java update fail, java update fail

    An error occur while installing the updates.(10.3)

  • Exfolders.exe tool crashes on Exchange 2007 server

    I've downloaded Exfolders.exe and I'm trying to run it on my Exchange 2007 server but it crashes everytime.  I get an APPCRASH with a fault module name of kernel32.dll http://gallery.technet.microsoft.com/Exchange-2010-RTM-<//wbr>ExFolders-c76c3649 I