Applying feathering to only one layer

Hi,
I'm created a two-part ad.  One of the two parts (on two different layers) has a background image that I would like only the center to show up and the rest I'd like to whiten (about 90% opacity, leaving 10% of the background image visible) using feathering, as described in Feather Selections In Photoshop With Quick Mask
So, does anyone know how to apply such feathering on only one layer?
Thanks!
-Ron

Create a Layer Mask and apply Feather in the Properties Panel.
Could you please post a screenshot with the Layers Panel visible?

Similar Messages

  • Replace one channel by another on only one layer, leaving the others intact?

    Hello. In a CMYK image, I need to turn on only one layer one channel completely into another, while the others remain intact. The M channel (the M on that layer) contains information, but I can't print M in this place. I want to change it into an equal amount of K (or into C, in the present case, or even into a mixture of the two). I know how to do this to an entire image (change into greyscale, duotone or whatever may apply). But since I need this to apply to only one (or a selection of) layer(s), leaving all others intact, this is not an option here. I'm sure there's a way to achive this, but I can't find it. Any advice would be much appreciated.

    bustamant wrote:
    hello, thanks for your replies. As far as I understand, Channel Mixer (i.e., an Adjustment Layer containing a Channel Mixer applied to the layer in question) allows me to reduce one channel to zero,
    You are completely correct up to here...
    Then choose K as the desired output channel at the top of the palette and slide the M (source) slider to the desired value.  You can choose more output channels by going to each output channel in turn.
    The way it works is slightly confusing at first, but in a nutshell, you choose your output channel first, then mixture of sources.  Then move to another output channel and the sources will be at the default position for THAT output channel only.  Each channel has a set of source channels assigned to it.
    Default;  black output channel = 100% black source, 0% CMY
    So your example is black output = 100% black source plus 100% mag source (although I expect you are going to change black source to 0)
    AND magenta output = 0% Magenta 0% CYK source  (no mag output at all)

  • Make only one layer of a video brighter

    Hi,
    I have few layers of videos, I am trying to make only one layer brighter.
    How can I do that?
    Thanks,

    Hmm, select the layer in the timeline, go to the effects menu, scroll down to color correction, in that menu choose brightness and contrast and adjust the brightness to your liking. It will only be applied to that layer.

  • Why does a my layered Illustrator file open with only one layer, when opened by someone else?

    I am using CS6, as is the other user.  When they open the file in Illustrator all the artwork is on one layer, even though the original file has numerous layers, and opens with these layers when I open it even now.
    I have never come across this problem before in all the years I have used Illustrator and have had no joy when trying to search for this problem.
    Any ideas or help would be greatly appreciated as it is confusing us!
    Thank you.

    Hi Mike, Wade & Larry,
    Thank you so much for your replies.
    Since I posted this issue, I was later informed that the other user is infact opening my files with CS5 and so a quick solution to this was saving it down to a previous version! Sorry for the confusion!
    This problem then becomes clear that it was a version error, but I have always had an error message come up if I try to open something that was created in a newer verion - is this no longer the case?
    I have been assured no pop up messages appear when opening the file which I find odd, and also that this layer compression has only just started happening even though many files have been back and forth previously.
    A little mystery! At least for now it is all working ok again
    Thank you all very much, greatly appreciated.

  • How can I edit separate layers in a psd file that was saved as only one layer?

    A designer provided me with a finished design and provided the psd, eps and ai files.  I'd like to make some minor changes in PS and would like to access individual layers - e.g. the text, background, etc.  When I open the psd file, however, it only has one layer.  how do I break out the original layers so that I can edit them?

    You can't. Once it's been flattened, you can't unflatten it. Talk to your designer: he/she will most likely have the unflattened version available.

  • Only one layer slow

    in cs6, working in black and white, 800mb file when flat, 3gb with layers.  One layer only is super slow.   it's not the largest layer. it's just a small image fragment.  but when I try smudging in that layer, computer freezes up and start to move super slow.   I tried copy and paste image content into new layer without improvement.   Slowness started happening after I stretched the layer.   I have since opened and closed this document many times. restarted computer.  duplicated layer into new file doesn't improve the matter either. 

    samlarson wrote:
    UPDATE:   when I move this layer outside of the group it's in it moves at normal speed....
    We cross posted there.  I am not sure why being grouped would slow down a layer

  • Apply effect to only one video line

    Does anyone know how to apply a transition to only one video line? Check out my video for further explanation.
    http://www.youtube.com/watch?v=NPCs8lsJR3Y

    Can't do that with that transition. It will always effect the adjacent clip coming in ot going out.

  • Colorize only one layer

    I'm using Trapcode Particular to generate an effect on to[ of a video and use a colorize adjustment layer to colorize the effect. Problem is that this also colorizes the video which is below the effect so how can I apply it only to the effect and leave the colors of the video unchanged?
    thanks!

    I can't do that because it won't change the color. Only works with an adjustment layer. Pre-Compose is useless since that removes the whole effect all together. So what now??
    I really don't know what you are talking about. Applying an adjustment layer effectively treats the output from Particular as a 2D layer, which is no different what happens under normal circumstances if you apply the effect directly - to the result buffer of the previous effect/ operation. You are trying to see distinction where there is none. Some effects ignore Alpha and such, but that's a whole different matter. If 3D interaction is a concern, you wouldn't use adjustment layers at all as it breaks 3D rendering order, resulting in incorrect overlaps. So by all means, either you are doing something fundamentally wrong or just fail to give us a clear impression of what it actualyl is you are trying to do, so please elaborate, provide a screenshot, link to a reference clip or something like that.
    Mylenium

  • Only one layer stops

    I have successfully managed to make play and pause controls which plays and pauses all movieclips and assigned soundchannels. The problem I have is that only the child movieclip which is placed on the top layer stops and plays and the other child movieclips are ignored.
    Here is the code:
    import flash.media.Sound;
    import flash.media.SoundChannel;
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    pause_btn.visible = true;
    play_btn.visible = false;
    var mySound:Sound = new MyFavSong();
    var myChannel:SoundChannel = new SoundChannel();
    var lastPosition:Number = 0;
    myChannel = mySound.play();
    pause_btn.addEventListener(MouseEvent.CLICK, onClickPause);
    function onClickPause(e:MouseEvent):void{
        lastPosition = myChannel.position;
        myChannel.stop();
        stopMovieClip(container);
        pause_btn.visible = false;
        play_btn.visible = true;
    function stopMovieClip(mc:MovieClip):void{
      mc.stop();
      for (var i:int = 0; i < mc.numChildren; i++)
      var mcChild = mc.getChildAt(i);
         if (mcChild is MovieClip) stopMovieClip(mcChild);
    play_btn.addEventListener(MouseEvent.CLICK, onClickPlay);
    function onClickPlay(e:MouseEvent):void{
        myChannel = mySound.play(lastPosition);
        playMovieClip(container);
        pause_btn.visible = true;
        play_btn.visible = false;
    function playMovieClip(mcPlaying:MovieClip):void{
      mcPlaying.play();
      for (var j:int = 0; j < mcPlaying.numChildren; j++)
      var mcPlay = mcPlaying.getChildAt(j);
         if (mcPlay is MovieClip) playMovieClip(mcPlay);   
    And the .fla: http://www30.zippyshare.com/v/71537447/file.html
    The movieclip named "container" is the parent which contains three different child movieclips (1-10, 10-1, colours) 1-10 is on the top layer and is the only movieclip which plays and pauses the others get ignored but if I swap the order round the others work only if they are on the top layer.
    It's probably easier to check out the .fla than to try to explain it!
    Any help would be appreciated.
    Thanks
    Phil

    First off, your stopMovieClip function is not closed - you're missing the } after the one that closes the for loop.
    Then within that function you are calling stopMovieClip - instead of just calling stop on the clip. It's not a recursive function so that's not going to work.
    I think you want something like this:
    function stopMovieClip(mc:MovieClip):void{
      mc.stop();
      for (var i:int = 0; i < mc.numChildren; i++)
      var mcChild = mc.getChildAt(i);
         if (mcChild is MovieClip){
              mcChild.stop();

  • Using adjustment layers to only one layer

    I know how to use an adjustment layer - it goes directly over the layer I'm editing and I'm able to edit the colour (such as hue etc). The trouble is, anything below that adjustment layer then gets affected. Is there any way I am able to make this adjustment layer exclusive to a partuclar layer?
    Ideally then in that sitation I'd be able to have a bitmap layer using a vector mask (for example, a cut out tree) and then using an adjustment layer to change the colour of the tree.
    Hope I've explained it well enough, it's a bit confusing.
    Thanks.

    I'm new to CS5, but find that if I create an adjustment layer from the "Adjustments" window I automatically get the chain link icon in the layers window showing the two layers linked, then the adjustment only affects the layer below.   However, if you use Layer|New Adjustment Layer|Levels (for example) then you have the option to use previous layer as a clipping mask if you tick that box it is linked just to the previous layer, left unchecked it affects all layers below.

  • How To Apply Similar Transformation Of One Layer To Another Without Duplicating?

    Hey there guys,
    This is my first post.
    I'm also new to Adobe Photoshop as well . I have a sample 3d eCover and I want to fit an image over the front part. However, I'm having a hard time transformating my image to perfectly the front layer. Is there any option to apply the same transformation of my front cover layer to my image?
    Additional infos:
    1. The front cover layer of the 3D eCover is not yet merged with the other layers. So, I can still edit it.
    2. I'm using Adobe Photoshop CS6.
    Thank you.

    Convert the untransformed image layer (or a duplicate of it) to Smart Object then use Edit > Transform > Distort to align the SO with the sample.
    The SO is not necessary but it has several benefits:
    Multiple transform sessions will not increasingly degrade the appearance.
    Each time you initiate a transform session, handles will be attached to the corners and edges of the SO instead of an axis-aligned bounding rectangle.
    It can be a template into which you load alternative images to instantly transform them.

  • Power Plane Problem: Only one layer as an option.

    Dear all,
    I try to use Create Power Plane tool as usually, but for some reason bottom layer is already selected and it can not be changed. I am using dual layer board, so there should be also top layer. I can draw traces and everything except the power plane on the top layer.
    I have made many dual layer boards without any problems with Power Planes. I can't figure out what I am doing differently from the previous boards.
    Any ideas?

    Hi,
    Try this:
    1.  Select Edit>>Selection Filter, disable all filters except for "Enable polygon", the default toolbars should have the filters option so you don't have to go back to the menu.
    2.  Select Edit>>Select All to select all copper area and power plane on the work area,
    3.  Press Delete,
    Now try placing the power plane again.  If this doesn't work, please send me the file, I will see if I can fix it for you.  Create a service request at:
    http://sine.ni.com/apps/utf8/niae_asc.main?lang=US
    Tien P.
    National Instruments

  • How to remove text from photo only one layer?

    How do I remove text from this photo? plz & ty
    o I remove text from a photo?

    Contact the person who took the photo and ask for a clean copy.
    If you don't know the photographer, chances are good that your use of the photo would be a violation of copyright.

  • Only want to apply adjustment to one layer

    When I apply an adjustment levels layer, all layers below are affected. I only want to apply an adjustment to one layer not all of them. How do I do this?
    I am using photoshop CS4
    Thanks,
    S. Hamsun

    To amplify that, an Adjustment layer will affect all layers below it. To restrict the effect to one layer, the adjustment layer must be clipped to the layer below. This can be achieved in CS4 by clicking the icon shown above in the Adjustments panel or Alt-Clicking on the border between the two layers in the layers panel.

  • My photos are not showing up as layers in the layers panel, only as one layer, so I can't make any changes to the layers.  Does anyone know why this is happening?  Am I downloading them from my camera wrong?

    My photos are not showing up as layers in the layers panel, only as one layer, so I am not able to make changes to the layers.  Does anyone know why this is happening?   Am I downloading them from my camera wrong?  I have watched the video and the photos don't open that way on my layers panel. Any help would be appreciated, I would like to edit out the background and turn it a different color.

    barba87623950 a écrit:
    My photos are not showing up as layers in the layers panel, only as one layer, so I am not able to make changes to the layers.  Does anyone know why this is happening?   Am I downloading them from my camera wrong?  I have watched the video and the photos don't open that way on my layers panel. Any help would be appreciated, I would like to edit out the background and turn it a different color.
    Photos from cameras or scans have only one layer (the 'background' layer).
    You can start with that 'background' layer and duplicate it or add other layers in the editing process. For instance you can make a selection of a subject and put it on another layer; a common use is to desaturate the 'background' and to keep the color in the selected subject in your newly created layer.

Maybe you are looking for

  • Thai language characters not displaying correctly in browser

    Hello all I am starting to develop a multilingual application which will include both english and thai. The problem Im having is that the browser displays only garbage when Im fetching a report on a table that includes Thai characters in a column. Wh

  • Navigation key in 6700 slide

    Does anyone know how or if you can personalise the middle navigation key so you can choose which applications it goes to if you click right, left, up or down? Can't find it in the manual and can't figure it out without it. Thanks

  • VDS didn't start: Could not load JDBC driver

    Hello, I want to start the VDS Tutorial, but I get an error: Exception: Data source 'Derby database' failed. Check your CLASSPATH! (in Tools -> Options) Could not load JDBC driver 'org.apache.derby.jdbc.EmbeddedDriver' Shutting down... Data source 'D

  • BAPI OR RFC THAT RETURNS THE VALUE TABLE CONTENTS THAT IS SPECIFIED IN DOM

    HI ALL, i have requirement of BAPI  or RFC that returns the value table contants(text table) in CRM.. for ex:   if i  pass the dataelement or domain or checktable as input parameter,could i get the contents of its text table associated with it.... pl

  • Joining two Tables

    Hi I am beginner in Oracle. I want some help in joining two tables and adding a new attribute to the resulting table For xample: Table Name: Texas* Ename   Enumber  Sal John 1 10 Akl 2 20 Renka 3 25 Table Name: California_ Ename     Enumber     Sal R