CS4 - Color Sampler readout with Adjustment Layer selected?

I'm not sure if this is a setting, or a bug, or the way adobe intended it, but perhaps some of you may know.
In Photoshop CS4, I have a few color samplers around the stage. I notice that the color readouts require that I make some adjustments using a curves layer. I add the curves adjustment layer and start to make adjustments. The only problem is that while I have an adjustment layer selected (so I can make changes to it) my color sampler readouts in the info panel display blank.
In previous version of photoshop this was not the case as you could open the adjustment dialog without actually having that adjustment layer selected. I love the new adjustment layer panel, but its really frustrating having to make some changes to an adjustment layer and then select another layer to see what those changes did to the color samplers, and back and forth, and back and forth.
Does anyone have a fix for this? Is it a bug? Is there a reason that CS4 functions this way?

I'm not sure if this is a setting, or a bug, or the way adobe intended it, but perhaps some of you may know.
In Photoshop CS4, I have a few color samplers around the stage. I notice that the color readouts require that I make some adjustments using a curves layer. I add the curves adjustment layer and start to make adjustments. The only problem is that while I have an adjustment layer selected (so I can make changes to it) my color sampler readouts in the info panel display blank.
In previous version of photoshop this was not the case as you could open the adjustment dialog without actually having that adjustment layer selected. I love the new adjustment layer panel, but its really frustrating having to make some changes to an adjustment layer and then select another layer to see what those changes did to the color samplers, and back and forth, and back and forth.
Does anyone have a fix for this? Is it a bug? Is there a reason that CS4 functions this way?

Similar Messages

  • Using color sampler values with curves adjustment layer

    Hi, I have just started trying to teach myself javascript.  Based on preliminary research, it's become apparent that there are many functions in Photoshop that are either extremely cumbersome or impossible to code by hand without using the Script Listener.
    My  goal is as follows: first, I will manually load two photos as layers in a single document.  Then I will manually place two or more color sampler points on the document.  At this point I would like the script to create a curves adjustment layer (ideally clipped to layer 2) and place as individual channel anchor points  the RGB data from the color sampler points on Layer 2, and then adjust the output of the points on each channel to the color sampler RGB values of layer 1.  
    As my first script, I realize this is probably going to be a lot of work.
    I did find some code that returns the average value of manually placed color sampler points.  Conceptually then, I would need to add code which creates a new curves adjustment layer and adds those RGB values (from a specific layer)  as anchor points on the individual channels,  and then hides one layer and looks at the RGB values of the color sampler points, and uses them as the output values for each anchor point.
    Sounds simple enough from a conceptual standpoint.
    I'm looking for some guidance on how to get started.
    Which parts will I definitely need Scriptlistener for and will that be adequate to do the job?
    How would you recommend I get started on this?
    Thanks very much for any input.

    The function I had provided was an example into which you would need to feed the values you got with Mike’s code.
    The code below would create a Curves Layer as shown in the screenshot, but I’m not sure it would work reasonably for all cases.
    // with code by mike hale;
    // 2012, use it at your own risk;
    // call the function to run the script
    #target photoshop
    createCurveAdjustmetFromColorSamplers();
    // create a function fo hold most of the code
    function createCurveAdjustmetFromColorSamplers(){
        // first add some condition checks
        // needs an open document in a color mode that supports layers
        if(app.documents.length == 0 || ( app.activeDocument.mode == DocumentMode.BITMAP || app.activeDocument.mode == DocumentMode.INDEXEDCOLOR ) ){   
            alert('This script requires a document in Greyscale, RGB, CMYK, or Lab mode.');
            return;
        // check for at least two colorSamplers
        if(app.activeDocument.colorSamplers.length < 2 ){
            alert('This script requires at least two colorSamplers.');
            return;
        // last check for at least two layers - assume they will be on same level( not in layerSet )
        if(app.activeDocument.layers.length < 2 ){
            alert('This script requires at least two layers.');
            return;
        // create varaibles to hold the colorSampler's color property for each layer
        // for the bottom layer
        var outputArray = new Array();
        // for top layer - array could also be created this way
        var inputArray = [];
        // store the number of samples because it will be needed in more than one place
        var numberOfSamples = app.activeDocument.colorSamplers.length;
        // hide the top layer
        app.activeDocument.layers[0].visible = false;
        // collect the samples from the bottom layer
        for(var sampleIndex = 0; sampleIndex < numberOfSamples; sampleIndex++ ){
            outputArray.push(app.activeDocument.colorSamplers[sampleIndex].color);
        // turn the top layer back on
        app.activeDocument.layers[0].visible = true;
        // collect those samples
        for(var sampleIndex = 0; sampleIndex < numberOfSamples; sampleIndex++ ){
            inputArray.push(app.activeDocument.colorSamplers[sampleIndex].color);
        // make sure the top layer is the activeLayer
        app.activeDocument.activeLayer = app.activeDocument.layers[0];
    // create arrays of the color values:
    var theArray = [[0, 0, 0, 0, 0, 0]];
    for (var m = 0; m < inputArray.length; m++) {
    theArray.push([inputArray[m].rgb.red, outputArray[m].rgb.red, inputArray[m].rgb.green, outputArray[m].rgb.green, inputArray[m].rgb.blue, outputArray[m].rgb.blue]);
    theArray.push([255, 255, 255, 255, 255, 255]);
    // sort;
    theArray.sort(sortArrayByIndexedItem);
    // makeCurveAdjustmentLayer();
    rgbCurvesLayer (theArray)
    ////// make rgb curves layer //////
    function rgbCurvesLayer (theArray) {
    // =======================================================
    var idMk = charIDToTypeID( "Mk  " );
        var desc5 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref2 = new ActionReference();
            var idAdjL = charIDToTypeID( "AdjL" );
            ref2.putClass( idAdjL );
        desc5.putReference( idnull, ref2 );
        var idUsng = charIDToTypeID( "Usng" );
            var desc6 = new ActionDescriptor();
            var idType = charIDToTypeID( "Type" );
                var desc7 = new ActionDescriptor();
                var idpresetKind = stringIDToTypeID( "presetKind" );
                var idpresetKindType = stringIDToTypeID( "presetKindType" );
                var idpresetKindDefault = stringIDToTypeID( "presetKindDefault" );
                desc7.putEnumerated( idpresetKind, idpresetKindType, idpresetKindDefault );
            var idCrvs = charIDToTypeID( "Crvs" );
            desc6.putObject( idType, idCrvs, desc7 );
        var idAdjL = charIDToTypeID( "AdjL" );
        desc5.putObject( idUsng, idAdjL, desc6 );
    executeAction( idMk, desc5, DialogModes.NO );
    // =======================================================
    var idsetd = charIDToTypeID( "setd" );
        var desc8 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref3 = new ActionReference();
            var idAdjL = charIDToTypeID( "AdjL" );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idTrgt = charIDToTypeID( "Trgt" );
            ref3.putEnumerated( idAdjL, idOrdn, idTrgt );
        desc8.putReference( idnull, ref3 );
        var idT = charIDToTypeID( "T   " );
            var desc9 = new ActionDescriptor();
            var idpresetKind = stringIDToTypeID( "presetKind" );
            var idpresetKindType = stringIDToTypeID( "presetKindType" );
            var idpresetKindCustom = stringIDToTypeID( "presetKindCustom" );
            desc9.putEnumerated( idpresetKind, idpresetKindType, idpresetKindCustom );
            var idAdjs = charIDToTypeID( "Adjs" );
                var list1 = new ActionList();
                    var desc10 = new ActionDescriptor();
                    var idChnl = charIDToTypeID( "Chnl" );
                        var ref4 = new ActionReference();
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idRd = charIDToTypeID( "Rd  " );
                        ref4.putEnumerated( idChnl, idChnl, idRd );
                    desc10.putReference( idChnl, ref4 );
                    var idCrv = charIDToTypeID( "Crv " );
                        var list2 = new ActionList();
    // add r points;
    for (var m = 0; m < theArray.length; m++) {
              addCurvePoint (list2, theArray[m], 0)
                    desc10.putList( idCrv, list2 );
                var idCrvA = charIDToTypeID( "CrvA" );
                list1.putObject( idCrvA, desc10 );
                    var desc15 = new ActionDescriptor();
                    var idChnl = charIDToTypeID( "Chnl" );
                        var ref5 = new ActionReference();
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idGrn = charIDToTypeID( "Grn " );
                        ref5.putEnumerated( idChnl, idChnl, idGrn );
                    desc15.putReference( idChnl, ref5 );
                    var idCrv = charIDToTypeID( "Crv " );
                        var list3 = new ActionList();
    // add g points;
    for (var m = 0; m < theArray.length; m++) {
              addCurvePoint (list3, theArray[m], 2)
                    desc15.putList( idCrv, list3 );
                var idCrvA = charIDToTypeID( "CrvA" );
                list1.putObject( idCrvA, desc15 );
                    var desc20 = new ActionDescriptor();
                    var idChnl = charIDToTypeID( "Chnl" );
                        var ref6 = new ActionReference();
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idChnl = charIDToTypeID( "Chnl" );
                        var idBl = charIDToTypeID( "Bl  " );
                        ref6.putEnumerated( idChnl, idChnl, idBl );
                    desc20.putReference( idChnl, ref6 );
                    var idCrv = charIDToTypeID( "Crv " );
                        var list4 = new ActionList();
    // add b points;
    for (var m = 0; m < theArray.length; m++) {
              addCurvePoint (list4, theArray[m], 4)
                    desc20.putList( idCrv, list4 );
                var idCrvA = charIDToTypeID( "CrvA" );
                list1.putObject( idCrvA, desc20 );
            desc9.putList( idAdjs, list1 );
        var idCrvs = charIDToTypeID( "Crvs" );
        desc8.putObject( idT, idCrvs, desc9 );
    executeAction( idsetd, desc8, DialogModes.NO );
    return app.activeDocument.activeLayer;
    ////// add curve point //////
    function addCurvePoint (theList, valueHor, theNumber) {
    var desc11 = new ActionDescriptor();
    var idHrzn = charIDToTypeID( "Hrzn" );
    desc11.putDouble( idHrzn, valueHor[theNumber] );
    var idVrtc = charIDToTypeID( "Vrtc" );
    desc11.putDouble( idVrtc, valueHor[theNumber+1] );
    var idPnt = charIDToTypeID( "Pnt " );
    theList.putObject( idPnt, desc11 );
    ////// sort a double array, thanks to sam, http://www.rhinocerus.net/forum/lang-javascript/ //////
    function sortArrayByIndexedItem(a,b) {
    var theIndex = 0;
    if (a[theIndex]<b[theIndex]) return -1;
    if (a[theIndex]>b[theIndex]) return 1;
    return 0;

  • Media pending with adjustement layer CC 2014

    Hi,
    I have so many problem with adobe premiere pro CC 2014
    - Media pending with adjustment layer track and some Red giant effects on it. Impossible to rendering ! Please, what the problem ?
    - I loose sound sometimes during playback, I can not hear anything.
    - Sound make a big noise sometimes, like a 1khz but not exactly. It appears when I go up the volume after adding gain or push up the volume in effect control.
    Have you got solutions please ?
    Thank you

    >What to do?
    Start by asking in a forum that is specific to your program... what program are you talking about?
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Changing skin tones with adjustment layer fails

    Hi,
    I am running PS CC 2014 and all I want to do is to adjust a skin tone to match it to the rest of the bodys skin color.
    I have watched some videos on YouTube but my PS doesnt seem to work that way and I wonder why.
    My workflow:
    Copy background layer.
    Quick select area of body where skin tone has to be changed
    (If necessary: improve selection)
    Now create adjustment layer with gradiation curve
    Select with double click midtone pipette and select one point of the "good skin tone" (also pressing CTRL at the same time when selecting it)
    Confirm with OK.
    Reject box which wants to take over skin tone as standard color.
    Click with pipette in the previously selected skin area which has to be changed.
    Instead of adjusting the color into a good skin color, this area turns into a strange orange color.
    All I can do now is to walk through the single RGB channels to makle adjustments and hope to get anywhere
    near the expected result.
    Where have I gone wrong ? Where does the orange color come from ?
    Any proposals how to get to a reasonable result ?
    Preferably with this workflow. But all other ideas are welcome, too.
    Thx.
    Arnold.

    For what it's worth: I have found that when sculptural modeling is involved, such as the in the hand, working with Curves in LAB (where tone is discrete from color) produces the color change more naturally and provides greater control over local contrast. You may want to consider that alternate approach. In this sample, the left forearm provided the reference color and I chose to lighten the tonal scale a bit.
    One off-topic comment: A shorter than normal focal length lens creates a foreshortening that makes near objects disproportionately large in relation to the rest of the object or scene. In this instance, consider its effect on the hand-head sizes. I would suggest that a focal length at least 1 1/2 times normal would be more appropriate.
    Good luck.

  • Removing a portion of a layer with Adjustment Layer?

    My brain isn't working too well today. How would I go about removing a portion of a image using Adjustment Layers?
    I can't alter the opacity of layers below an Adjustment Layer using that Adjustment Layer can I?

    [I can't alter the opacity of layers below an Adjustment Layer using that Adjustment Layer can I?]
    Yes, if you apply AE's native "Transform" filter to the adjustment layer and keyframe the opacity.
    It's not really using an adjustment layer, but similarly you could also remove a portion of an image without directly editing that image layer by using asolid above it masked to the shape you need as a track matte ... or even with stencil/silhouette alpha blending modes.
    BTW, it makes me feel better to know I'm not the only one whose brain just flat out stops working at times and I have to go to the forums and ask how to do things I've done a million times. ;~)

  • MOTION TRACKING PROBLEM WITH ADJUSTMENT LAYER

    Hi.
    I'm trying to  blur out a logo on a shoe, but I'm having some difficulty getting the  tracker to stick to the logo.  Can someone help me, please.  Here are  the steps I took:
    1.  I used Tracker to track a logo that I want to blur out.
    2.   After analyzing the layer, I went back to check the attach point frame  by frame  The attach point is centred perfectly on the logo on every  frame.
    3.  Then, I added an adjustment layer, and used the pick  whip to ensure that the position of the adjustment layer is the same as  the attach point position from the tracker.
    4.  On the adjustment  layer, I created an ellipse mask, applied a gaussian blur.  But when I  do playback, the ellipse mask is all over the place and not sticking to  the logo.
    Does anyone have an idea as to what I'm doing wrong?  Any advice would be appreciated.  Thanks, in advance.
    2010 Mac Pro.  After Effects CS5.  Snow Leopard 10.6.6.

    To start off I always apply tracking data to a null then parent the null to the layers that should follow the track.
    Make sure that you have picked the right target. Make sure that you've picked the right options. You should be using Transform as the track type. You should also do a quick Google search. There are a bunch of tracking tutorials out there.
    If your null follows the object then you can parent the adjustment layer to the null. That should do it.

  • Adjustment layer selective erase won't work

    I use adjustment layers all the time in PS elements, and usually if I create an adjustment, I can erase part of the layer with the eraser tool. This has stopped working. Now my erasor tool doesn't affect adjustment layers at all. (Photo layers work just fine)
    Does anyone know why this could be?
    [I'm using PS Elements v 7.0.3 on a Windows 7 OS]
    Thanks

    The O key shortcut toggles an overlay colour, which will tell you whether you are successfully painting "mask" or not. If set to Erase, or otherwise zeroed as Hal P Anderson says, nothing will happen regardless of the strength of the selected adjustment. The adjustments themselves can be changed before you start painting, during or after.
    If you don't see the individual adjustment sliders, note that the brush panel has an expanded and a collapsed mode, controlled by a small arrow at the right hand end of the "Effect" line.
    Besides the mask overlay, the adjustment sliders can also be used to set a deliberately extreme adjustment so you can see what you are doing, and then you can tone that down to taste afterward. Dragging on the "pin" to right and left sides respectively, exaggerates or mutes all of the sliders - moves them proportionally further away from, or toward, their zero points.

  • CS4 - Color Correction Bug with MPG2 export

    I just want to verify this is a bug others are seeing before I submit the bug report.
    1. Create a new timeline of your choice, (size etc does not matter)  Make sure "maximum bit depth" is selected.
    2. Next, place a clip of your choice (HDV, AVCHD, or EX1) that has bright sceen in it so the IRE hits 110.
    3. Place the Fast Color Correction or Three way color correction effect on the clip.  Change somthing (like white balance or whatever)
    4. Export the clip to MPG2 BlueRay.  Any preset will do.
    5. Now bring the just exported M2V clip back into the project and place it on the timeline.  The max IRE value will be 100, not 110.
    6. If you do step 4 but export the H264 BluRay, the IRE will stay at 110.
    I was doing some CC and it was driving me crazy.

    Bump. Has anyone seen this problem? Seems like a very comon workflow.  CC a clip, then export the MPG2?

  • Cannot select tones in Color Balance adjustment layer

    I'm not able to select the tone menu in the color balance tool. Is this a bug?

    It was the tone pulldown menu when I used color balance as an adjustment layer. But it's now working for me. I just restarted the app.

  • Why are my eyedropper targets changing when I select my adjustment layer?

    Consider this simple document with 2 layers and an adjustment layer:
    Note the eyedropper targets. They read as expected:
    Now, observe what happens when I click my adjustment layer (this is a new Levels adjustment that has NOT YET BEEN TOUCHED - so there should be NO CHANGE)
    It doesn't matter whether the adjustment layer or its layer mask are selected, the results are the same.
    Here are my eyedropper settings:
    Proof Colors is off. I can't think of any other setting to play with.
    This looks like a pretty huge bug to me, and it's not something I remember from earlier versions. Does anyone know what's going on?

    Thanks for the added clarifications Noel. Can you perhaps explain to me how the behaviour of the color sampler in the info palette is actually desirable?
    Let's look at my example again. When I am trying to make an adjustment and I'm looking at my color sampler targets, I _must_ have my adjustment layer selected. Target #1 is pointed over a white pixel. Regardless of which layer I have selected, that pixel is white. I can't imagine a scenario in which the readout should be anything other than 255,255,255. That's not a feature, that's a design mistake.
    If I want to see, in the readout, the value of the background image's pixel, then I should hide the layer that contains that white shape. Then, that pixel is no longer white, and the color sampler readout should reflect that. Makes sense.
    If you truly and honestly believe that users are interested in the color that is a result of compositing all the layers below (and including) the currently selected adjustment layer when they are plaing with the adjustment layer controls, then the UI must temporarily hide any layers above that color sampler as soon as I select the adjustment layer. This is the only correct UX design in that scenario - so that the color sampler once again reflects exactly what is "true" - namely the pixel color on the screen that it is sampling.
    And if you re-read that last paragraph you will intuitively know that that would be crazy. I mean, there's no way that a user would want to have the UI hide any layers just because he's clicked on the Adjustment Layer - he probably wants to see the adjustment in the context of the entire composition. If he wanted to hide those other layers, he'd do it himself.
    I urge you to reconsider this from the perspective of a real-world user and consider logging this as a bug. I just can't see any way that it isn't a mistake.

  • CS4 change adjustment layer

    In CS3 it was possible to change an adjustment layer after it was created, i.e. duplicate a curves adjustment layer and then go Layer>Change to make that layer a levels adjustment layer (or some other type of adjustment layer). Is it possible to do this in CS4 and if so how?

    In answer to your question about why I would want to do this, the curves to level was just an example. But in the past, with CS4, if I had an adjustment layer with a mask, that was for example, an exposure layer, and then I wanted to reduce the saturation of that same masked area, I would just duplicate the layer and change the layer content to hue/sat. Of course, there are lots of other ways to do this, copy the mask or selection and then make a new layer with a newly created mask, but those other ways all seem to be more cumbersome. I thought it was a nice feature in CS3 but apparently it does not exist in CS4 — asked the question thinking it might be some key stroke and not documented since I could find no reference to in in the documentation for CS4.

  • Color Sampler Tool bug?

    Am I nuts here, or is this something with my particular machine?  I'm running Photoshop CS4 (11.0.1) and I'm seeing the following:
    Create a new image.
    Add a folder.
    Add a mask to that folder (I've done this with a raster mask, not a vector)
    Create an adjustment layer inside that folder (I've tried this with curves, hue/sat, and/or channel mixer).
    Duplicate the folder, and invert the mask on the copy.
    Highlight an adjustment layer (either one).
    Put out a color sampler inside the area masked by the current folder/adjustment layer. This becomes sampler #1.  This shows the current values (correctly).
    Put out a color sampler OUTSIDE the area masked by the current folder/adjustment layer.  This becomes sampler #2.  This shows no values (correctly).
    Highlight the adjustment layer in the second masked folder.
    Both samplers now show no value (incorrect).
    Delete sampler #1.  The new #1 now shows the current values (correct).
    Recreate the other sampler (now at #2).  Sampler #2 does not show color values (correct).
    Highlight the first adjustment layer again.
    Both samplers now show no value (incorrect).
    It appears that *all* color samplers are either using the masked area of sampler #1, or combining the masked area of all lower numbered samplers, to determine if they should calculate values.  The workaround is to remove all samplers every time you switch masked folders (which can get a bit insane if you have a lot of masked folders).  This is not the way it worked in CS3.
    Can anyone else duplicate this issue?  Or is this unique to my machine?  I'm running a fresh install (less than a week old) on Mac OS X 10.5.8, and I've updated to PS 11.0.1.
    Message was edited by: achbed
    Added version information

    Simply put:  Color Samplers will report no information with a Color Adjustment layer selected if it is contained in a masked Group and if the #1 Color Sampler is in the masked region.
    The cursor sampler WILL work however.  Unfortunately, I often need the mouse elsewhere while making adjustments.
    This makes working in masked groups quite bothersome so any help would be appreciated.

  • Color sample reading funniness?

    I am using CS4 and have been using PS since version 1.0. There is one thing about the way CS4 handles color samples that is different than previous version. If I have 3 different adjustment layers and check my color samples, the numbers will change depending which adjustment layer I am on. This doesn't make any sense and makes it harder to adjust color and tone. I am intersted in the final color with all of my adjustment layers combined. If I am trying to match color between files and I have a saturation adjustment layer and a curve adjustment layer above that, and I am keeping an eye on my color samples, if I adjust the saturation layer there is no easy way of seeing exactly what the numbers. While I am on the saturation layer the numbers night be 206,250,77, but then when I click on the curves layer the numbers are 219,251,96. So to really know what the numbers are you need to be on the top most layer. It was never like this before. I know this is normal opporation for CS4, but how are others dealin with this?
    Another strange thing I found, and this is just with a particular file, but when I hover the color sample tool about an are I get different numbers under the eye dropper info and I do under my color sample point info. The shot is of a pair of jeans, and it's a pretty large file, around 26"x21"@300dpi. I have my eye dropper sample point set to 101. When I first hover the eye dropper abover the area I want to sample the reading in the upper left of the info pallete is 102,120,153 then as soon as I click the color sample point reading is 150,169,204. This was done on just the background layer, no other layer have yet been added. I even tried blurring the area to get rid of any texture, but still the same issue.
    Well I just figure out what the issue is but I thought I would post this anyway. I found out if I zoomed into 100% first, then placed the sample point it worked like it is suppose to. I know that viewing both color and sharpness can vary slightly when your not at 100%, but I didn't think that it would effect the actual numbers?

    I agree an altarable "Funny Factor" woud be a useful addition for CS5. Maybe a dial of some sort, turn it up and its funny, down and its not so funny.
    Look at your eyedropper options there are checkboxes for Sample all layers and "sample size"

  • Photo Filter adjustment layer and eye dropper

    Hi all
    I am sure there is a simple solution to this but here goes (BTW I am using a Windows 7 machine and a variety of versions of PS).
    Somebody showed me an interesting way to address color cast in photos and he showed my using CS2. I tried it at home on Photoshop CC, CS6 and CS5.5 with no joy. I then tried it on CS2 (at home - so the same machine with the other versions on) and it worked as I was shown.
    The method is this.
    Load the image that has a color cast.
    Select Adjustment layer and add a Photo Adjustment layer
    Select "Color" rather than one of the pre-defined filters and click on the Color Box to activate the eye dropper.
    Using the eye dropper select a part of the picture that is closest to the cast that you want to remove
    Then in the "a" and "b" boxes in the dialogue box make the numbers the opposite of what they are (For example if the number is 32 change it to -32, if the number is -32 change it to 32).
    Then click on OK to change the color.
    Then you should be able to use the density slider to increase or decrease the colour cast.
    Now all of that works fine if I am using CS2 - but if I try it in CC, CS6 or CS5.5 when I try to use the eye dropper I cant select any colors in my picture. No matter what I click on I get White, it will not pick up the color.
    I am sure I am doing something wrong, but I cant for the life of me think what!
    Any ideas?
    Cheers
    John

    Rkelly - Thanks for that - it worked.
    Not wishing to sound un-gracious. But how come I dont need to use Ctrl if I apply the effect via the "image/adjustment/photofilter" route but do need Ctrl if I try to apply the same thing via an adjustment layer?
    It isnt a huge problem now that you have supplied me with the solution.... I just want to understand as much as I can.
    Cheers
    John

  • "step backward" command maintain current layer selection

    It is said that even in past versions of Photoshop,Please make "step backward" command maintain current layer selection (like the "undo" command's behavior).
    The current "step backward" layer change issue is inconvenient because it causes unnexpected layer selection change.
    When I was talking about this issue on Twitter,over 200 persons' approval was obtained in one day.
    I know how to avoid in the script,but we hope as a standard feature.

    Yeah, I noticed that too.
    For those who don't know what this is about, here's a sample scenario.  Let's say you're working on an image.
    1.  You happen to have an adjustment layer selected.
    2.  Now you want to work on an image layer below, so you click on it.
    3.  You use the Clone Tool on the image layer a couple of times.
    4.  You don't like how it came out, so you click on the same History step that was active during step 1.
    5.  You try to Clone again, but you find that the History change has caused the Adjustment layer to be selected as it was before step 2.
    The real base issue is that since the Clone Tool is still selected, we tend to think we can just keep cloning after going back in the History, when in fact we really need to repeat step 2 again.  On paper this seems pretty straightforward, but in practice one almost never remembers to check which layer is selected.
    Maybe an option to store the layer selections as History steps would help with this.  Then we would tend to go back to just after the proper layer was selected.
    -Noel

Maybe you are looking for

  • Lost my Contact Names and Months of New Entries w/ iOS 4 Update--Any Help?

    Hi, I updated to iOS4 yesterday and after it was done all my contact names were gone. The numbers were all in there, just no names. I don't use Mobile Me for my contacts. Checking my iPhone sync settings on my Mac for some reason "sync contacts" with

  • Differing CMYK in Acrobat and Photoshop

    I read different CMYK values for the same PDF file in Acrobat and Photoshop. (Acrobat 9 and Photoshop CS4) I read the colours in Photoshop after opening the file as 16-bit CMYK. I read the colours for the same PDF file in Acrobat in Output Preview (P

  • Importing iTunes Music After Carbonite Restore

    Trying to free up some space, I did a clean install a few weeks ago after backing up almost my entire HD, including the 41,000+ songs I had in iTunes. Today, after two solid weeks of running my MacBook 24/7, I finished restoring all of my music, whic

  • Comparsion between windows 7 and windows 8

    comparison between windows 7 and windows 8 in which are helpful for application packaging clevershiva

  • Writing single query with conflicting WHERE statements

    How do I run the following as a single query that will result in a column that pertains to the first block of code and then another column that pertains to the 2nd block of code? The issue is that I need 2 different WHERE statements. So the final out