Changing layer colors

Can anyone help?  I am trying to change 2  color layers in a psd file and can't figure out how to do it...
Note, I tried to attach the .psd file here but the upload manager wouldn't let me.

Hi tried that but it won't open the dialogue.  Can I email the file to you since it wouldn't let me upload the psd?

Similar Messages

  • Working with Edge Animate, how do you change layer colors and and names of layers?

    For many years, I have worked with Adobe Photoshop, and the ability to change layer color or the name of layers is quite easy. I have been reading around about how to do this with Edge, but, can't find any information on how I might be able to do this. Can you help?
    Thank you!
    LainKennedy

    Hi Darrell,
    Thank you for your answer. When I double click on the layer name, it opens for a second, then closes. I have tried to close the app, shut down my workstation, throw out the preferences, and, nothing seems to work. Am I doing something wrong?
    Thank you, again, for your timly answer. Really appreciate your help.
    Lain

  • PS Script - Change Layer Color

    This Is My First Post Here, So Hello Everyone,
    Hope I Am Posting In The Right Section,
    I Have A Photoshop File Which Looks Like Shown Above..
    The Text 1 2 3 ...15 Are Different Layers..
    And The Boxes Are Different Layers, Named i1 i2 i3 ...... i15
    I Want To Write A Script That Will Change The Color Of Boxes (Actually This Is Legend Section For A Pie Chart)
    I Want To Write Very Hard-Coded Script, Nothing Dynamic,
    Like
    layer[i1].color = #9f13a8
    layer[i2].color = #520457
    layer[i3].color = #cc626c
    layer[i4].color = #aa5705
    I Tried Searching Around, But Very Less Help Available On ps-script And Complicated Examples....
    I Just Want Some Simple Lines, How To Easily Reference A Layer By Name And Change The Color (Forecolor, I Guess)
    I Wrote This But It Does Not Works
    var myDocument = app.activeDocument;
    var myLayer;
    myLayer=myDocument.artLayers.getByName("i1");
    myLayer.color="#9f13a8";
    I Don't Know If .artLayers Is Only For Text Layers Or Something.. I Found It In An Example...
    Thanks

    If you want to apply a pattern you can use scriptlistener to generate the code. It might be best to create the shape first by either drawing it or by using scriptlistener to generate the code, then use scriptlistener to generate code to change the fill pattern. This way you can use that code for any type of shape layer: oval, rectangle, etc. If you don't want a dialog box, you will have to find both the name and id number for the pattern used - again, this will show up using scriptlistener. If you want have a dialog box come up and be able to select which pattern you want to use, change the last line of the scriptlistener code to:
    executeAction( idsetd, desc10, DialogModes.ALL );
    But be sure to reset the dialog mode to No after that line. Here's an example of the code for changing a pattern:
    #target photoshop
    var idsetd = charIDToTypeID( "setd" );
        var desc10 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref2 = new ActionReference();
            var idcontentLayer = stringIDToTypeID( "contentLayer" );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idTrgt = charIDToTypeID( "Trgt" );
            ref2.putEnumerated( idcontentLayer, idOrdn, idTrgt );
        desc10.putReference( idnull, ref2 );
        var idT = charIDToTypeID( "T  " );
            var desc11 = new ActionDescriptor();
            var idPtrn = charIDToTypeID( "Ptrn" );
                var desc12 = new ActionDescriptor();
                var idNm = charIDToTypeID( "Nm  " );
                desc12.putString( idNm, """$$$/Presets/Patterns/Patterns_pat/TieDye=Tie Dye""" );//pattern name
                var idIdnt = charIDToTypeID( "Idnt" );
                desc12.putString( idIdnt, """1b29876b-58b7-11d4-b895-a898787104c1""" );//pattern ID number
            var idPtrn = charIDToTypeID( "Ptrn" );
            desc11.putObject( idPtrn, idPtrn, desc12 );
        var idpatternLayer = stringIDToTypeID( "patternLayer" );
        desc10.putObject( idT, idpatternLayer, desc11 );
    executeAction( idsetd, desc10, DialogModes.ALL );//Change the NO to ALL
    app.displayDialogs = DialogModes.NO;//Make sure you reset!!!

  • How to set layer color property via script?

    I'm looking for a way to set a layer's UI color property via script (see attached). Any help would be greatly appreciated!

    jrapczak2 wrote:
    Uhm.. wow. That's crazy complicated
    It is even more complicated to work with multi-selected layers.
    if( app.documents.length > 0 && versionCheck()  ){
         app.activeDocument.suspendHistory("Set Layer's Color", 'changeLayersColor()');
    function versionCheck()  { return app.version.match(/1[1|2]./) >= 11; };
    function changeLayersColor(){
         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<c;i++){
                             try{
                                  activeDocument.backgroundLayer;
                                  selectedLayers.push(  desc.getReference( i ).getIndex() );
                             }catch(e){
                                  selectedLayers.push(  desc.getReference( i ).getIndex()+1 );
                    }else{
                        var ref = new ActionReference();
                        ref.putProperty( charIDToTypeID("Prpr") , charIDToTypeID( "ItmI" ));
                        ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
                        try{
                             activeDocument.backgroundLayer;
                             selectedLayers.push( executeActionGet(ref).getInteger(charIDToTypeID( "ItmI" ))-1);
                        }catch(e){
                             selectedLayers.push( executeActionGet(ref).getInteger(charIDToTypeID( "ItmI" )));
                   return selectedLayers;
         function makeActiveByIndex( idx, visible ){
              if( idx.constructor != Array ) idx = [ idx ];
              for( var i = 0; i < idx.length; i++ ){
                   var desc = new ActionDescriptor();
                   var ref = new ActionReference();
                   ref.putIndex(charIDToTypeID( "Lyr " ), idx[i] );
                   desc.putReference( charIDToTypeID( "null" ), ref );
                   if( 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<selectedLayers.length;l++ ){
                   makeActiveByIndex( selectedLayers[l], false );
                   setActiveLayerColor( colorIDs[dlg.ddColors.selection.index] );
              makeActiveByIndex( selectedLayers,false );

  • Is it possible to change the color of a layer of a Customs CSS from an External Style sheet?

    Hi,
    I have sucessfully link External .css  file to my HTML page and able to change the font size of the headlines and the paragraph.
    What I am not able to do is to ADD the color my Custom CSS from the External sheet.  I have difined the color attribute as a 'Advance'
    and gave it the same name "#bigwraper" that is has in my HTML file.
    Attached is the color outline of my 'Blank Layout' with colors?
    Thank you.
    Dreamer101.1

    Hi Murray,
    I am building a web site on which the entire content would be changed at least daily. The website would have similar design to www.Helium.com
    The page will have CCS layout boxes in which different content would  be pasted.
    To re-phrase my question:  I want to know how to change the color of a layer from an external style sheet?
    Because my home page 'Sidebar' and colors would be the same for all page, only the content of different pages would be different.  If I want to change a color of my web side pages, I need to learn how to do it in one spot through an External Style Sheet.
    I am amble to link my external style sheet and to change H1 tag and to give it different colors. But I was not sucess with change the color of a layer on which my content sits around.
    I took out the color from my HTML page and gave the same name to the layer in my External Style Sheet with the same color.
    Hope my question and the reason I was able to clarify.
    cheers,
    Dreamer101.1

  • I am trying to change the color of a background layer and it will not accept the color I want

    I am trying to change the color of a background layer and it will not accept the color I want

    If you want to get help you may have to provide a lot more details about what you are doing (which tools or commands do you use, what exactly happens when it fails, …)?

  • Is there a simple way to change the color of a new layer?

    I draw a box, which creates a new layer, but I cannot find a way to change the color of the layer. I can easilty create a box and change the color in Fireworks but this logic or funtionality evades me in Photoshop. Perhaps I'm using the wrong program to create graphics. Should I use Design or Illustrator instead?

    If you prefer using Fireworks, use Fireworks!
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Can you layer a Microsoft shape onto an image in Photoshop and change the color???

    I'm using OS X Yosemite 10-10-1, Photoshop CC, 2014.2.1. I uploaded a shape from Word Office 2011 and layered it over my image. The symbol is blue and I want to change the color in Photoshop. I've tried but can't seem to figure out how it's done. The shape is blue.
    Thank you.

    Put the Word symbol on a new Word document.
    Save as  .pdf
    Bring into Photoshop and save as .psd. The area around the symbol will be clear.
    Drag symbol layer over an image
    Lock the clear area usng the symbol indicated by the red arrow shown above
    Choose your replacement color
    Edit > Fill with the Blending Mode set to Color
    Job done.

  • Changing mask colors or placing transparent text over another layer

    Hey. Looking for a little help here. Basically I have some video footage on one layer. I want to make a text mask that will go over the footage so that the footage can only be seen inside the letters. I was able to do this by creating an image mask and inserting the text into the HUD, however now the mask background around my letters is black and I need it to be white. Any thoughts for how to change the color of the mask from black to white while still leaving the lettering transparent so that the video footage is visible behind it? Also willing to try other techniques if you have thoughts. Thanks for your time,
    Eric

    Add a white rectangle shape to the group, put it at the bottom.

  • Is there a way to change the Layer Color Tag via Script?

    I tried to use the Script Listener to find the Event to change the Layer Color Tag but there were no commands recorded to my desktop. I have scoured the forums and the depths of Goooooo....ooogle and to no avail.
    I checked the API for an Art Layer and found no options to assign a Color Tag.
    I want to change the Color Tag From:
    To Color Tag Purple:
    Could anyone please help point me in the Right Direction?

    Just solved my own question:
    Photoshop was being weird so I had to change the color 2 times for the event to be recognized...idk why but it worked: heres the code:
    desc66.putReference( idnull, ref55 );
        var idT = 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 );

  • Change the color of the outer line of a shape

    Hello I'm trying to create a rectangle with a red border and no inside fill. It's only to highlight some text of a bank form.
    I know i have to right click the layer and choose blending options and stroke. But I've tried to change the color so many times and no matter what I do, the outer line remains gray and with rounded corners.
    I want the corners of the rectangle to be squared, not rounded but I'm having a hard time changing this.
    Please help
    I'm using Photoshop CS3
    thank you
    Could anyone please show a picture of where to change the color of the outer line? I've tried everything.

    Hi,
    With Ps CS3, you'll probably want to define a Layer Style for a Stroke and then use that with the Square Shape Layers.
    This is a Stroke of 4 px, 'Centered' (so a very slight corner rounding on the outside edge. 'Inside' will give you square corners for both inside and outside edges). To change the color of the stroke, go to Layer> Layer Style> Stroke and change the color by clicking on the color bar.
    regards,
    steve 

  • Changing the color of a registered trademark symbol in a logo and what is the the symbol's size?

    I have a logo with the registered trademark symbol.  I tried to change the color of the registered trademark symbol to the same color as the logo, using the color replacement tool but it did not work.  Is there another way to change its color?
    Also, I need to find out how big the registered trademark symbol is in comparison to the logo.  (height, width, how far away from the logo the symbol is).  How do I do this?  Trying to use the Ruler tool was a disaster.  As you've probably noticed, I'm very new to Photoshop.
    thanks,

    Depending on what colors you are working with adding a layer above the logo with the "color" layer style may work for you. This really only works if the logo is on white and the TM isn't black or white.
    For Example:
    Before
    Paint (on a new layer) the new color
    Change the layer style of that new green layer to "color"
    And voila!
    If you're working with a black or white TM you may just have to mask it out and make a new one with the text tool, I'm not aware of another way to change it (though I'm not the photoshop guru some of these people are =D)

  • Flash CS4 - Can I change the colors of the background or text that shows up in the Layers section?

    I am stuggling here!  I am colorblind.  I need to change either the color of the background or the color of the text on the layers section on the Timeline.  I simply cannot read/see what is currently showing.  It is a very light blue background with white text and white dots for seeing, locking, or setting the outline color.  I need to either change the text color and dots to black so I can see them, or try to change the background color to a dark blue so I can read the white text.  Changing the text color would really be my preference.  How do I do this?   Please help.  Adobe hasn't been very concerned about colorblindness when developing these products.  I can barely make out all the light grey/grey/dark grey/grey stuff.  Now this! 

    For Windows you can adjust your Theme (or download a new one and use that). This will alter the color of each layer, for example if you use Classic then it will use a very dark blue for layers that will provide higher contrast. I've downloaded other custom themes in the past that use a very dark grey for example.
    (By the way, for Mac users go to Appearance in System Prefs and choose a different Highlight color - you can choose a default or custom one. That color is used for the layer color).

  • How can I change a color of an image without affecting the texture, but based on a pantone pick?

    Here is an image of a paintbrush stroke that shows the texture of the paint.  I want to change the color to a specific pantone green in order to match a specific color pallet.  Rather than just using hue saturation to "guess" at the color (no pantone number), is there a way I can actually set a base color without losing the texture?

    You can only use the picker values as a guide on an image with many tones.
    I presume you are going to print as cmyk, so find the mix of the target colour and make a 'solid colour' adjustment layer and choose that mix. Then set the adj layer properties to 'hue' which should do it.
    Otherwise, add a 'hue/saturation' layer (and click on colorize in the adj layer palette) and move the slider to suit.
    If you convert to greyscale, you could colorize the pic with the spot colour too.

  • I can't change the color of an object past a certain point, it returns to original color

    Two problems/questions: Opening a file in photoshop cs4 today I noticed that all my folders were labeled as "pass through" (first time seeing this) and when I click the color icon box of an object in the layer pallete, it will not change the color past a certain point. To clarify, I have previously made an object or layer using the pen tool and filled it with a certain purple. Now I want to go back and make it a brighter purple. So I double click the color fill thumbnail in the layer and the color selection window pops up. I click the top right color of the area  (which happens to be the brightest color) and press ok, but my object stays as the original color I had made it before. What is the reason for this?
    Eric

    »Pass Through« indicates that Adjustment Layers will affect lower Layers outside the Group and that contained Layers with different Blend Modes will affect Blending with underlying Layers outside the Group accordingly.
    If you change it to Normal or any of the other Blend Modes everything contained within the Group will basically act as one flattened Layer and Adjustments only affect the Group’s pixel content.
    Could you post a screenshot of the document with the Solid Color Layer’s Color Picker and the Layers Panel visible?

Maybe you are looking for

  • Can't rename style in default.css

    <blush> never mind... figured it out... (can i delete this?)

  • Database connection problem while startup

    Hi Guru My oracle database version is 10.2.0.3 in AIX 6.1. I have created a database through DBCA but not able to connect from host. error is as under $ export ORACLE_SID=rmancat $ sqlplus '/as sysdba' SQL*Plus: Release 10.2.0.3.0 - Production on Tue

  • Character field format mask

    since Oracle Reports doesn't allow character data format masks, whats the work around to format telephone numbers, etc. without having to store them as a number data type?

  • BSP Development and Client-Eventing

    I am working on a java stack portal, <b>EP 6.0 SP11</b>.  (It does not have the ABAP stack.) I want to develop my portal content using BSP's.  I have a <b>BW</b> installation which is version <b>3.1</b>, running on <b>WebAS 6.20</b>, and an <b>R/3</b

  • Where to get ADF Mobile Client Extension?

    I could not find it anywhere... I am using jdev 11.1.1.3.0 I tried using my jdev -> check for updates -> Official Oracle Extension & Updates -> ADF Mobile Client - Developer Preview is not available version 11.1.1.3.37.56.63 But it prompted me to inp