Change the color layer

I'm new on this and have spent hours trying to change my blue curve on the right to a pink curve in Photoshop.

Also somebody can help me change the transparent background? http://www.beccagray.co.UK

Thank you

Helen

I think for this particular project, you will get much better results by making a new line and using the tool pen

is not difficult for this kind of thing. Replace color not give good results.

(it comes to cs3, but everything is the same in cs4)

1. Select the pen tool and set options in the toolbar options as below.

2. with the pen tool, click on the upper part of the line and then click on the bottom of the line to a straight path.

3. place a dot in the Center by pointing the cursor on the line until you see a + symbol and click.

4. press the button of ctl to switch to direct and make Selection tool drag the center point on the line.

(you may need to move the other two points to center the path to the line)

(if you can't get the direct Selection tool by pressing the Ctrl key, use the direct Selection tool in the Toolbox)

5. make a new empty layer, select the Brush tool and set your brush. I used a round brush to 3 px diameter and

Set your foreground color to the color pink you want.

6. press the Enter key on the keyboard to stroke the path or go in the paths Panel and select the path.

MTSTUNER

Tags: Photoshop

Similar Questions

  • Is there a way to change the color layer tag via the Script?

    I tried to use the listener from Script to find the event to change the color of the layer tag, but there is no order saved on my desktop. I've scoured the forums and the depths of huge... ooogle and nothing is helping.

    I checked the API for an Art Layer and found no option to assign a color label.

    I want to change the color tag of the:

    Capture.JPG

    The purple color of the tag:

    Capture2.JPG

    Could someone please help point me in the right Direction?

    Just solved my own question:

    Photoshop has been weird so I had to change the color 2 times for the event must be recognized... idk why but it worked: here is the code:

    desc66.putReference (idnull, ref55);

    idT var = charIDToTypeID ("T");

    var desc67 = new ActionDescriptor();

    var idClr = charIDToTypeID ("Clr");

    var idClr = charIDToTypeID ("Clr");

    var idVlt = charIDToTypeID ("Vlt");

    desc67.putEnumerated (idClr, idClr, idVlt);

    var idLyr = charIDToTypeID ("Lyr");

    desc66.putObject (idT, idLyr, desc67);

    executeAction (idsetd, desc66, DialogModes.NO);

  • How can I change the color of a layer selected in the layers of grey to blue Panel?

    When you work on an image editing in Photoshop CC 2015, the layer in the layers panel highlighted is a gray color.  In tutorials, it appears as blue.  How can I change the color in my layers panel so the highlight layer is blue, not gray?

    I don't think there is an option to set the highlight color for the selected layer - the shift from blue to gray was introduced between 2014 Ps and Ps 2015, tutorials where you see the highlighted in blue are probably just be using an older version of Photoshop.

  • Script to change the selected layer to one of the drop-down list in the layers palette colors

    Hello!

    I was wondering if anyone knows of a script that would allow me to change the selected layers (single or multiple selection) in 'Light Blue' or all the colors in the menu drop-down? (see attached screenshot)

    I found the following but it changes all layers and is the RGB color.

    -----

    say application "Adobe Illustrator"

    set current_Layer in current document

    view the dialog box "in the current document there is" & layersCounter & "layers." & "Recolor label layers?"

    Repeat until (layersCounter = 0)

    set color of layer layersCounter in the current document to {Light Blue}

    set layersCounter to layersCounter - 1

    end Repeat

    end say

    -----

    Screen Shot 2015-06-12 at 10.46.46 AM.png

    I don't know how the script so any help is greatly appreciated. Thank you in advance!

    John

    as far as I can tell this is only possible with a few other modifications... Since 'selected' is not a property of "layers" javascript cannot determine if you see a highlighted layer in the layers panel.

    you could do one of 2 ways. Depending on how many layers you want to change the color, you can either make those visible or hidden (for example, if you want to change to 80% of the layers of a specific color, hide others 20%). and then simply add a clause inside the loop if for.

    var doc = app.activeDocument;

    var layers = doc.layers;

    Blue of var = new RGBColor();

    Blue.Red = 79;

    Blue.Green = 128;

    Blue.Blue = 255;

    for (i = 0; i<>

    If (layers [i] .visible == true) {}

    var = aLay layers [i];

    aLay.color = blue;

    }

    }

  • Possibility to change the color of the text in a text layer?

    Hello

    Is it possible to change the color value of a text via ExtendScript layer?  I scanned the documentation, but didn't notice anything that would allow me to access this property immediately.  Is this possible?  Otherwise, there is no work around?


    Thank you

    Arie

    Change the text color to Red:

    var app.project.activeItem = myComp;

    var myTextLayer = myComp.layer (1);

    var mySourceText = myTextLayer.property("ADBE_Text_Properties").property ("ADBE Text Document");

    var myTextDoc = mySourceText.value;

    myTextDoc.fillColor = [1, 0, 0];

    mySourceText.setValue (myTextDoc);

    Dan

  • change the color of text blocks only the active layer

    Well my script to change the color of the text frame changes the color of all the blocks of text hidden or not.

    I need to change only the visible text blocks.

    If (app.documents.length > 0) {}

    newCMYKColor = new CMYKColor();

    newCMYKColor.black = 0;

    newCMYKColor.cyan = 0;

    newCMYKColor.magenta = 0;

    newCMYKColor.yellow = 0;

    for (i = 0; i < app.activeDocument.textFrames.length; i ++) {}

    textArtRange = app.activeDocument.textFrames [i] .textRange;

    textArtRange.characterAttributes.fillColor = newCMYKColor;

    }

    }

    Any ideas on how the way only change the color of the text on the active layer blocks? In the final script I want to hide all other layers so if it could be done by a visible attribute more easily that would work just as well.

    Thank you

    Duane Leach

    Hello

    It will work for you?  Have not tested much beyond text blocks in groups and those who are just stand-alone on the layer.

    If (app.documents.length > 0) {}

    var thisDoc = app.activeDocument;

    newCMYKColor = new CMYKColor();

    newCMYKColor.black = 00;

    newCMYKColor.cyan = 40;

    newCMYKColor.magenta = 50;

    newCMYKColor.yellow = 50;

    Need to retrieve blocks of text within the groups on the layer.

    var artSel = thisDoc.activeLayer.groupItems;

    for (i = 0; i<>

    If (artSel [i] .hidden == false) {}

    var text = .textFrames artSel [i];

    for (j = 0; j<>

    text [j].textRange.characterAttributes.fillColor = newCMYKColor;

    }

    }

    End to change the rest of the outside groups text boxes.

    var textArtRange = app.activeDocument.activeLayer.textFrames;

    for (k = 0; k<>

    If (textArtRange [k] .hidden is false)

    textArtRange [k].textRange.characterAttributes.fillColor = newCMYKColor

    }

    on the other

    Alert ("it is not any open documents to change...");

  • How can I change the color of the user interface of a layer selected in PS CS5.5?

    Hey,.

    I was wondering how to change the color of the layer selected in the palette layers? It's quite embarrassing like that (dull blue/gray) and sometimes hard to see what layer is selected?

    I prefer the lighter blue on my other computer.

    Any advice much appreciated

    From this to this.jpg

    Oh, I missed that you said cs5 and cs6 not?

    Post edited by: R_Kelly

    If it's cs5, have you tried to change the highlight color in preferences under appearance, or general system?

  • How can I change the color of the layer selected in the layers panel?

    When I select an object in my PS5 image with the selection tool, it is supposed to select the layer in the Panel (automatic selection on). Depending on where in my line of sight the layer in the Panel, the color is so close in contrast with the other layers that I can hardly find than what I chose. Is there a way to change the default color that indicates when a layer is selected? Maybe they need a black line around the selected layer?

    Note: I will not how to change the color in the "property of layers" window to a specific layer.

    Thank you

    Good to hear. Please mark the thread as 'response '.

  • Change the color on more than one layer property

    In the layers panel, can I change the color of layers Layer property?

    that is, he wants all red green layers.

    I can select all red layers at a time and make them green?

    Picture 8.png

    If you have CS4 or higher, you can use this script to set color of several layer.

    function setActiveLayerColor( color ) {
         var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('null'), ref );
            var colorEnumDesc = new ActionDescriptor();
            colorEnumDesc.putEnumerated( charIDToTypeID('Clr '), charIDToTypeID('Clr '), color );
        desc.putObject( charIDToTypeID('T   '), charIDToTypeID('Lyr '), colorEnumDesc );
        executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    };
    function getSelectedLayersIdx(){
              var selectedLayers = new Array;
              var ref = new ActionReference();
              ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
              var desc = executeActionGet(ref);
              if( desc.hasKey( stringIDToTypeID( 'targetLayers' ) ) ){
                   desc = desc.getList( stringIDToTypeID( 'targetLayers' ));
                    var c = desc.count
                    var selectedLayers = new Array();
                    for(var i=0;i 0 ) {
                   var idselectionModifier = stringIDToTypeID( "selectionModifier" );
                   var idselectionModifierType = stringIDToTypeID( "selectionModifierType" );
                   var idaddToSelection = stringIDToTypeID( "addToSelection" );
                   desc.putEnumerated( idselectionModifier, idselectionModifierType, idaddToSelection );
              }
              desc.putBoolean( charIDToTypeID( "MkVs" ), visible );
              executeAction( charIDToTypeID( "slct" ), desc, DialogModes.NO );
         }
    };
    
    var colors = ['None','Red','Orange','Yellow','Green','Blue','Violet','Grey'];
    var colorIDs = [charIDToTypeID('None'),
                             charIDToTypeID( "Rd  " ),
                             charIDToTypeID( "Orng" ),
                             charIDToTypeID( "Ylw " ),
                             charIDToTypeID( "Grn " ),
                             charIDToTypeID( "Bl  " ),
                             charIDToTypeID( "Vlt " ),
                             charIDToTypeID( "Gry " )];
    var dlg = new Window( 'dialog', 'Change Layer Color' );
    dlg.ddColors= dlg.add("dropdownlist", undefined,  colors);
    dlg.ddColors.preferredSize.width = 100;
    dlg.ddColors.items[0].selected = true;
    dlg.ok = dlg.add('button',undefined,'Ok');
    dlg.cancel = dlg.add('button',undefined,'Cancel');
    var results = dlg.show();
    if( results == 1 ){
         var selectedLayers =  getSelectedLayersIdx();
         for( var l=0;l		   
  • Change the color of the text in a layer

    I created the link for each text element in a layer window. When the visitor clicks on the line of text, a picture of the popup element. When the visitor back to the list, the selected text has changed color. The text remains of same color, even when the visitor leaves. What should I do please, so that the color changes to the color of origin at the end of the page? I saw 'help' on "Attach a behavious in the text", which shows how to change the color to black. What would you say to other colors?

    It is a message with multiple parts in MIME format.

    -= _NextPart_000_0063_01C8512D.94179210
    Content-Type: text/plain;
    charset = "iso-8859-1".
    Content-Transfer-Encoding: City-printable

    Looks like you just need to put you a: link and a: visited color the =
    even in your statements CSS, if you want them to be the same after the =
    link is different if you want different or selected. It =
    Help?

    Best - Joe

    Joseph Lowery
    Vice President of Marketing, WebAssist
    Author of the Bible of Dreamweaver CS3

    "Karlhevera" wrote in message =
    News:fltnsj$88h$1@forums. Macromedia.com...
    > I've created link for each text element in a layer window. When the =
    visitor = 20
    > click on the line of text, a picture of the popup element. When the =
    visitor = 20
    > back to the list, the selected text changes color. Text =
    rest of same = 20
    > color even when the visitor leaves. What should I do please, so =
    which the = 20
    > changes color to the color of origin at the end of the page? I have =
    VU = 20
    > 'help' on "attach a behavious in the text", which shows how to change =.
    color = 20
    > black. What about other colors? = 20
    >
    -= _NextPart_000_0063_01C8512D.94179210
    Content-Type: text/html;
    charset = "iso-8859-1".
    Content-Transfer-Encoding: City-printable




    charset = 3Diso-8859-1 ">"




    Looks like you just need to =
    you are a: link and = 20
    a: visited in your colors CSS declarations, if you want =.
    them = 20
    even when you have selected the link or different if you want =
    different. = 20
    Who help me?


    Best - Joe

     

    Joseph Lowery
    Vice President of =
    Marketing,<>
    href = 3D" http://www.webassist.com" > WebAssist "
    Author of<>
    href = 3D" http://www.idest.com/dreamweaver/" > Dreamweaver CS3 = "
    Bible

     

    "Karlhevera" <<>
    href = 3D "mailto:[email protected]" >
    size = 3D 2 > [email protected]
    size = 3D 2 > > wrote = 20
    in the message
    href = 3D "news:[email protected]" ><>
    face = 3DArial =
    size = 3D 2 > news:[email protected]<>
    face = 3DArial size = 3 2 >...
    > I =
    created = 20
    link to each piece of text in a layer window. When the visitor
    > =.
    Click on on = 20
    the line of text, a picture of the popup element.  When the visitor =

    > = 20
    back to the list, the selected text changes color.  Text =
    rest of = 20
    even
    > color even when the visitor leaves.  How I have =
    do = 20
    Please, so that the
    > changes color to the original color on =.
    = Exit 20
    the page?  I've seen
    > 'help' on "attach a =
    behavious to = 20
    text ", which shows how to change the color
    > black. How about you =
    to = 20
    other colors?
    >

    -_NextPart_000_0063_01C8512D.94179210 =-

  • Can you change the color of guides based on the layer you on that?

    I want to change the colors of the guides to differentiate the grids on different layers. is this possible?

    Martyn,

    I'm afraid she's one for a feature request.

    https://www.Adobe.com/cfusion/mmForm/index.cfm?name=wishform

  • Change the color of layer

    http://www.propertyrichmond.com

    Apologies for such a simple request, but I spent hours trying to change the color of the headers in this document.

    They are currently all in a brown color (for the homepage it is "looking for a property in Surrey?")

    If I try to change the fill, it changes even the background which means then I lose my diagonal edges and the form becomes a simple rectangle.

    Can someone please help?

    Thank you very much

    Hold down the CTRL key and drag the left upper handle with the mouse slightly to the right - then repeat with the upper right handle.

  • Change the color of the layer

    Hello

    I want to reverse the position of the color on these two layers palette. I can't color the background to Navy Blue. Can someone point me in the right direction?

    Screen shot 2011-03-29 at 12.02.54 PM.png

    Thank you

    Gordon

    If you look to the left of the layer number in your layer panel in the screenshot above, you will see that it is empty. If you add something to the layer, there is a triangle pointing to the right on the layer name. This indicates that there is something on the layer. If it is empty, there is no object on the layer. For the backgroung of the color layer, you will need to add an object (a rectangle) to the layer so that it can be filled with a color. There is no fill flood in a layer in Photoshop

  • Change the color of the text in several .psd with actions

    Is there a way to change the color of the text layers in several files in .psd (with a different text in each of them) with actions?

    All the files that I have to do that with are structured in the same way - background and above a layer of text.

    Here are the basics...

    #target photoshop;
    main();
    function main(){
    //select folder where PSDs are held
    var selectFolder = Folder.selectDialog( "Please select folder of PSDs");
    //if no folder selected quit.
    if(selectFolder == null) return;
    //get an array of all PSDs in the folder
    var fileList = selectFolder.getFiles("*.psd");
    //iterate through file list
    for(var a in fileList){
    var textColour = new SolidColor();
    textColour.rgb.hexValue = "00ff00"; //set colour to green
    open(fileList[a]);
    activeDocument.activeLayer = activeDocument.artLayers[0];  //Select top layer
    if(activeDocument.activeLayer.kind == LayerKind.TEXT){ //check if it is a text layer
    activeDocument.activeLayer.textItem.color = textColour; //set text to colour
    activeDocument.save(); //Save changes
    activeDocument.close(SaveOptions.DONOTSAVECHANGES); //Close document
    }else{//not a text layer so close document
     activeDocument.close(SaveOptions.DONOTSAVECHANGES); //Close document
     }
    }//end of filelist
    };
    
  • change the colors in the vector shapes - photoshop script

    I have a problem with the code which changes the colorsand vector shapes. It only works on a single layer, and if you select more than one layer, it pops up error. Is - that someone knows how to solve this problem?

    #target photoshop
    cTID
    = function(s) { return app.charIDToTypeID(s); };
    sTID
    = function(s) { return app.stringIDToTypeID(s); };

    function Action3() {

     
    function step1(enabled, withDialog) {
      
    if (enabled != undefined && !enabled)
      
    return;
      
    var dialogMode = (withDialog ? DialogModes.ALL : DialogModes.NO);
      
    var desc1 = new ActionDescriptor();
      
    var ref1 = new ActionReference();
      ref1
    .putEnumerated(sTID("contentLayer"), cTID('Ordn'), cTID('Trgt'));
      desc1
    .putReference(cTID('null'), ref1);
      
    var desc2 = new ActionDescriptor();
      
    var desc3 = new ActionDescriptor();
      
    var desc4 = new ActionDescriptor();
      desc4
    .putDouble(cTID('Rd '), 243);
      desc4
    .putDouble(cTID('Grn '), 110);
      desc4
    .putDouble(cTID('Bl '), 93);
      desc3
    .putObject(cTID('Clr '), sTID("RGBColor"), desc4);
      desc2
    .putObject(cTID('FlCn'), sTID("solidColorLayer"), desc3);
      
    var desc5 = new ActionDescriptor();
      desc5
    .putInteger(sTID("strokeStyleVersion"), 2);
      desc5
    .putBoolean(sTID("fillEnabled"), true);
      desc2
    .putObject(sTID("strokeStyle"), sTID("strokeStyle"), desc5);
      desc1
    .putObject(cTID('T '), sTID("shapeStyle"), desc2);
      executeAction
    (cTID('setd'), desc1, dialogMode);

     
    };

    step1();};

    Action3.main = function () {

    Action3();};Action3.main();

    2016, use it at your own risk.

    #target photoshop

    If (app.documents.length > 0) {}

    myDocument var = app.activeDocument;

    var theLayers = getSelectedLayersIdentifier();

    for (var m = 0; m< thelayers.length;="" m++)="">

    changeSolidColor (theLayers [m], 128, 0, 255);

    }

    };

    //////////////////////////////////////////

    based on the code of paul m..

    function getSelectedSoidColorLayersIdentifier() {}

    var selectedLayers = new Array;

    Var ref = new ActionReference();

    ref.putEnumerated (charIDToTypeID ("Dcmn"), charIDToTypeID ("Ordn"), charIDToTypeID ("Trgt"));

    var / / desc = executeActionGet (ref);

    If (desc.hasKey (stringIDToTypeID ("targetLayers"))) {}

    DESC = desc.getList (stringIDToTypeID ('targetLayers'));

    var c = desc.count;

    var selectedLayers = new Array();

    Browse layers selected;

    for (var i = 0; i)<>

    try {activeDocument.backgroundLayer;

    var theIndex = desc.getReference (i). getIndex();

    } catch (e) {var theIndex = desc.getReference (i) .getIndex () + 1};

    get id for layers of solid color;

    try {}

    Var ref = new ActionReference();

    ref.putIndex (charIDToTypeID ("Lyr"), theIndex);

    var layerDesc = executeActionGet (ref);

    var theIdentifier = layerDesc.getInteger (stringIDToTypeID ("layerID"));

    var adjList = layerDesc.getList (stringIDToTypeID ('adjustment'));

    var theColors = adjList.getObjectValue (0) .getObjectValue (stringIDToTypeID ('color'));

    selectedLayers.push (theIdentifier);

    } catch (e) {};

    };

    If a single:

    } else {}

    Var ref = new ActionReference();

    ref.putEnumerated (charIDToTypeID ("Lyr"), charIDToTypeID ("Ordn"), charIDToTypeID ("Trgt"));

    var layerDesc = executeActionGet (ref);

    try {}

    var theIdentifier = layerDesc.getInteger (stringIDToTypeID ("layerID"));

    var adjList = layerDesc.getList (stringIDToTypeID ('adjustment'));

    var theColors = adjList.getObjectValue (0) .getObjectValue (stringIDToTypeID ('color'));

    selectedLayers = [theIdentifier]

    } catch (e) {};

    };

    Return selectedLayers;

    };

    change the color of solid color layer.

    function changeSolidColor (theIdentifier, theR, g target) {}

    // =======================================================

    var idsetd = charIDToTypeID ("setd");

    var desc4 = new ActionDescriptor();

    var idnull = charIDToTypeID ("null");

    var ref1 = new ActionReference();

    Ref1.putIdentifier (stringIDToTypeID ('contentLayer'), theIdentifier);

    Desc4.putReference (idnull, ref1);

    idT var = charIDToTypeID ("T");

    var desc5 = new ActionDescriptor();

    var idClr = charIDToTypeID ("Clr");

    var desc6 = new ActionDescriptor();

    idRd var = charIDToTypeID ('Rd');

    desc6.putDouble (idRd, theR);

    var idGrn = charIDToTypeID ("Grn");

    desc6.putDouble (idGrn, g);

    var idBl = charIDToTypeID ("Bl");

    desc6.putDouble (idBl, theB);

    var idRGBC = charIDToTypeID ("RGBC");

    Desc5.putObject (idClr, idRGBC, desc6);

    var idsolidColorLayer = stringIDToTypeID ("solidColorLayer");

    Desc4.putObject (idsolidColorLayer, idT, desc5);

    executeAction (idsetd, desc4, DialogModes.NO);

    };

Maybe you are looking for