Select and apply the mask

Hello!

I upgraded to the PS 2015.5 version and not the herramineta appears "perfect edge " appears instead " select and apply mask " . In this new space I can not use any of the tools panel on the left (fast selection tool , brush, etc. ) . 

What may be because the problem ??

Thanks in advance

Hi axe_juan,

Selection and masking of space replaced him refine edge - more information about it here: selection and masking part of a photo. Tutorials Photoshop Adobe CC

You are looking for, or can you elaborate a bit more on what your question is?

Concerning

Pete

Tags: Photoshop

Similar Questions

  • Select and update the mask of the new cc

    I make a selection using the lasso tool > go to the Select again and the mask. When this window opens, my selection is a party! Tried to go directly to the Select and mask and make the lasso selection, and the moving dotted line disappear until I can feather! What I am doing wrong, please.

    Sheila

    Glad it worked for you...

    Please mark my answer is right

  • Identify and apply the mask by LVR or RVlA

    Hello everyone, I can't modify this code. It applies a mask by a selection ("LVR"), but if you don't have a choice, it displays an error.

    I need that if there is no selection, then it creates an empty mask ("RVlA"). Can not understand how to make this "if / else".

    cTID = function(s) { return app.charIDToTypeID(s); };
    sTID = function(s) { return app.stringIDToTypeID(s); };
    
    
    function Temp() {
    
      function step1(enabled, withDialog) {
        if (enabled != undefined && !enabled)
          return;
        var dialogMode = (withDialog ? DialogModes.ALL : DialogModes.NO);
        var desc1 = new ActionDescriptor();
        desc1.putClass(cTID('Nw  '), cTID('Chnl'));
        var ref1 = new ActionReference();
        ref1.putEnumerated(cTID('Chnl'), cTID('Chnl'), cTID('Msk '));
        desc1.putReference(cTID('At  '), ref1);
        desc1.putEnumerated(cTID('Usng'), cTID('UsrM'), cTID('RvlS'));
        executeAction(cTID('Mk  '), desc1, dialogMode.NO);
      };
    
      
      step1(); 
    };
    Temp.main = function () {
      Temp();
    };
    
    Temp.main();
    
    

    Finally I got it! I'm a bad programmer, but help adobe is as bad as

    cTID = function (s) {return app.charIDToTypeID (s) ;};}
    sTID = function (s) {return app.stringIDToTypeID (s) ;};}
    function Temp() {}
    Southeastern var = ("LVR");
    var Selnes = ("RvlA");
      function step1 (withDialog, doc) {}
       
        if(doc == undefined) doc = activeDocument;
        var = doc.activeHistoryState;
        doc. Selection.Deselect ();
        var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);
        var desc1 = new ActionDescriptor();
        DESC1.putClass (cTID ('Nw'), cTID ('one'));
        var ref1 = new ActionReference();
        Ref1.putEnumerated (cTID ('one'), ('one') cTID, cTID ('Msk'));
        DESC1.putReference (cTID ('At'), ref1);
        If (as! = doc.activeHistoryState) {}
        DESC1.putEnumerated (cTID ('Usng'), ('UsrM') cTID, cTID (SelY));
        doc.activeHistoryState = have;
        }
        else {}
            DESC1.putEnumerated (cTID ('Usng'), ('UsrM') cTID, cTID (Selnes));
        }
        executeAction (desc1 cTID ('Mk'), dialogMode.NO);
      };
      
      Step1();
    };
    Temp.main = function () {}
      Temp();
    };
    Temp.main ();
  • Selection of parts and columns, or entire lines and apply the character style

    I am trying to apply character styles to certain parts/whole rows and columns.

    I can change individual cells with the following code...

    table = app.selection[0];
    if (table.hasOwnProperty("baseline")) table = table.parent;
    if (table instanceof Cell) table = table.parent;
    if (table instanceof Column) table = table.parent;
    if (table instanceof Row) table = table.parent;
    if (table instanceof Table)
    
    {
     table.rows[0].cells[6].texts[0].appliedCharacterStyle = "none report";
     }
    

    ... but when I try to select an entire line, I get the error 'Object does not support property or method' texts. "" "When I try one of the following two codes.

    {
     table.rows[0].cells.texts.appliedCharacterStyle = "none report";
     }
    

    {
     table.rows[0].cells.appliedCharacterStyle = "none report";
     }
    

    Anyone know how I can do the following?

    1. Select any row (or column) and apply the character style

    2. Select the last line (regardless of the number of rows in the table) and apply the character style

    3. apply the character style to specific columns (with theexception of the cells of two albums)

    Thank you!

    Hello

    Change this line:

    table.columns[a].cells.itemByRange(2,-1).texts.everyItem().appliedCharacterStyle = "chart orange";
    

    for the first 2 rows in each column

    Jarek

  • Help with a script that detects the content in a cell and apply the cell style to line

    Hello


    I am trying to add an article to my table formatting script that is a cell with the word 'Budget' (but this can be written as ' Budget:' or ' Budget: (E) "- but without the speech marks) and apply the cell Style - SponsorCells - to all the cells of the whole line. I currently have on what it will, but it does not work:


    function checkWhichTable()
    {
    // ensure the user made a selection
    if (app.selection.length != 1)
    return null;
    var currentTable = app.selection[0];
    if (currentTable.hasOwnProperty("baseline"))
    {
    currentTable = app.selection[0].parent;
    }
    while (currentTable instanceof Cell || currentTable instanceof Row || currentTable instanceof Column)
    currentTable = currentTable.parent;
    if (!(currentTable instanceof Table))
    {
    // No table selected
    return null;
    }
    return currentTable;
    }
    app.doScript(checkUserSelection, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, "Process Table");
    
    
    function checkUserSelection ()
    {
    var a_table = checkWhichTable();
    if (a_table == null)
    {
    if (confirm("No table selected. Do you want to process *all* tables?") == false)
    return;
    allTables = app.activeDocument.stories.everyItem().tables.everyItem().getElements();
    for (aTable=0; aTable<allTables.length; aTable++)
    {
    processTable (allTables[aTable]);
    }
    } else
    {
    processTable (a_table);
    }
    }
    function processTable(table)
    {
    // do something here!
    
    
    //Set 1st Row Height
    table.rows[0].height = "30mm";
    
    
    //Find Text in Cell and apply Cell Style to Row 
    var  
      myCellText=['Budget', 'Budget:', 'Budget: (E)'];  
     var myRegEx = new RegExp("^("+myCellText.join("|")+")$");
      for (i=0; i<table.cells.length; i++)
      {
        if (table.cells[i].texts[0].contents.match(myRegEx))
          table.cell[i].appliedCellStyle = "SponsorCells";
      }
    
    
    //end - do something here!
    }  
    


    I can get the script to apply the cell style to "SponsorCells" for each cell that contain the word 'Budget' etc, but I need cell ever on this line to have the cell style applied. I tried to re-write line 56 which applies the style to a cell, but I can't seem to make it work. Any help would be great.


    Separate on this issue, I would like to have a line of code similar to the 46 line, which sets the 1st height of lines, but I would like to say "If a cell has 'A cell Style' and then applies the value height 10 mm". If someone could result as a help of bonuses, things would be great double.


    Thanks in advance!

    But that could be painfully slow. To speed things up, follow these steps:

    var cells = table.cells.everyItem().getElements();
    for (var i=0; i
    

    It is faster, because it creates an array of cells with a call to table.cells, which is several times faster than calling table.cells. And before assigning to line 12mm height is useful to check if it is already 12 mm. checking things in InDesign and do things only when it is necessary is much more effective than simply doing things even if they are not necessary.

  • Search for characters, nested and apply the Cstyle

    I have

    you want to find the nested applied characters and apply the Cstyle, but my capture of code all the text in a document. Can you please guide me,

    nestedreport();

    function nestedreport() {}

    myDoc var = app.activeDocument;

    var myDocPath = myDoc.filePath;

    var myDocName = myDoc.name;

    try {}

    app.findGrepPreferences = app.changeTextPreferences = null;

    app.findGrepPreferences.findWhat = "^.» + » ;

    myFind = myDoc.findGrep (false);

    var ntexts = new Array;

    for (i = myFind.length - 1; i > = 0; i--)

    {

    if(myFind[i].contents.nestedStyles==null)

    {

    ntexts.push (myFind [i]. Happy)

    ntexts.appliedCharacterStyle = "Nested";

    }

    }

    }

    {catch (e)}

    }

    Screen shot 2015-07-21 at 2.26.33 PM.png

    Hello

    I'm still somewhat struggled with the final goal, however to make a small step:

    To detect a string that is formatted using nestedStyle (part of the content of the paragraph), you can use this:

    assuming that ==> text is selected - say a paragraph

    var
      cCharStyle,
      charStyles = app.selection[0].characters.everyItem().appliedNestedStyles,
      step = charStyles.length,
      resString = "";
    
      while ( (cCharStyle = charStyles.pop() ) && step--)
           if ( cCharStyle.length )
                resString = app.selection[0].characters[step].contents + resString;
    
    alert ( resString );
    

    Jarek

  • link to an interactive report AND apply the filter for 2 items.

    Hi can you help me out here on how to create a link to an interactive report AND apply the filter for 2 items.

    Here is my code

    I have a list of table, clicking the selected item should link to interactive report and create the filter. Below the code does not work for a filter. can you help me what to do with 2 filters.

    A filter = > works very well

    sys. HTP.p ("< ul class =" uChartList"> ');

    sys. HTP.p ("< class li =" uNumber uGrid col_2 col_sart"> ');

    sys. HTP.p ("< a href =" "|") sys. HTF.escape_sc ('f? p ='|: APP_ID |': 0 0 :'||: APP_SESSION |':00:P00_XXX:000, RIR:IREQ_XXX:Test :') |) » » >') ;

    sys. HTP.p ("< class =" uValue"> ' | l_tester |) ("< / big >");

    sys. HTP.p ("< small class =" uLabel"> < /small > Tester ');

    sys. HTP.p ("< /a > '");

    sys. HTP.p ("< /li >" ");

    Scenario 2:

    Two filters = > does not

    sys. HTP.p ("< ul class =" uChartList"> ');

    sys. HTP.p ("< class li =" uNumber uGrid col_2 col_sart"> ');

    sys. HTP.p ("< a href =" "|") sys. HTF.escape_sc ('f? p ='|: APP_ID |': 0 0 :'||: APP_SESSION |':00:P00_XXX:000, RIR:IREQ_XXX:Test:P00_YYY:001:IRC_YYY:test2 :') |) » » >') ;

    sys. HTP.p ("< class =" uValue"> ' | l_tester |) ("< / big >");

    sys. HTP.p ("< small class =" uLabel"> < /small > Tester ');

    sys. HTP.p ("< /a > '");

    sys. HTP.p ("< /li >" ");

    Thanks in advance

    actually the syntax wrong values in the syntax of the passes to several elements.

    is

    f? p = 6000:6004: & APP_SESSION. : NO:6003:MY_ITEM1, MY_ITEM2, MY_ITEM3:1234, 5678

    Use above scenario and verification.

    Go

  • Impossible to select and move the letters while playing 'Word with friends' through facebook

    Original title: play games

    During playback "words with friends" through face book... I can't select and move the letters on the touch screen without the screen, scrolling up and down.
    I need the touch screen to allow the movement of the letters c A C H, etc. on the game board without scrolling of the image of the screen!
    Several of my Face book games does not load completely without hanging... both Adobe Flash player and Windows are also perfectly up-to-date.
    Kind regards

    Hi Stephanie,

    Looks like you are unable to play words with friends on Facebook and also problems with other facebook games.
     
     
    Since you are faced with a design problem with the play on words with friends on facebook, I suggest you to contact the administrator of the game to get more information about the compatibility of the game in Windows RT. You can also ask if they provide latest app for the particular game.

    support.Zynga.com/Home/Words-with-friends
     
     
    I would also ask you to contact Facebook to get information about other games:
     
     
     
    Hope this information helps.
  • Select and hide the query

    In Photoshop CC when I use select and hide the 'onion skin' filter does only rarely. Any suggestions as to why this could be?

    Works perfectly! I'm wondering now if I had the - ticked instead of +. Seems as if could be the answer and if it does not work in the future I'll check everything here first. Thanks for your time and your help.

  • Paint with white in selection and hide the workspace

    Hello

    I'm in selection and hide the workspace > discovers black & white. When you use the Paintbrush tool, how to switch between painting with white and black?

    With the Brush tool selected paint just in the black and white view and this is equivalent to paint with white. Now the alt key or option is equivalent to paint with black.

  • What computer privileges must install and apply the updates for Creative Apps clouds using Windows 7?

    What computer privileges are required to install and apply the updates for Creative Apps clouds using Windows 7?

    When you work for a company that controls the software installed on your computer, it is important to know if IT supports is necessary to install and apply the updates when updates are available.

    It is important to know this information before you buy.

    Thank you for your support.

    ~ Paul Miller

    admin command is required for installation or any changes made to the software from your computer.

  • 4.0 ai2 - cannot select and copy the code from a package body when opened in read-only mode

    4.0 ai2 - cannot select and copy the code from a package body when opened in read-only mode

    He was connected/buggy. It is not fixed yet. But it will be.

  • Navigate in the photo when zoomed in and using the mask tool

    Hey guys, I tried to figure out how to move photo when I'm zooming in and using the mask and I can not understand. It's a pain to have clear the Brush tool can pan around, especially when I am trying to add a mask. If someone could help, it would be great. Thank you!

    Space bar.

  • Select and artifacts of mask using the new refine edge

    Hi all

    is - that someone else has had this problem since the last update version 2015.5.0 Photoshop?

    I find strange artifacts when using select and mask and the new brush refine edge that would not happen in the old refine edge.

    The Alpha channel looks good but the image shows of strange artifacts and blurry tasks and resembling traces of brush end hard.

    I took the time to correct my mask in order to remove any traces of brush hard edge, but they seams to still be there. I find it very frustrating.

    Select &amp; Mask Blurred Artifacts.jpg

    Hmmm... think I just found the answer to my question. I got the color box to decontaminate tiquetee.

    I have hidden without this box and the blur and artifacts disappeared. My recommendation for anyone making high range of editing and masking is to leave this box unchecked.

  • In any case to select and distribute the layer MASK?

    First of all:

    Bravo to adobe and being the scourge never in my professional life.

    Now:

    I want to use the button "Distribute Horizontal centers" to space out perfectly a few places I've hidden with images inside. There are six in a row (he is a Web browser) and they are each in a group with a text layer, a button that covers the image, and the image itself which is hidden for a square perfect with an edge effect.

    Naturally, when I select each group, even with the direct Selection, the value 'group' tool, distribute botches royally just work.

    Of course, I can order select each layer, but it is not to distribute what is visually shown, but all of the content of what is hidden, and seeing that I can't not order select each mask, it makes a selection, I turned to what to do. And no, I don't want to flatten each tile because I want to keep the raw nature of the adjustments and other file.

    Yes.

    I created a shape object, live text and a masked image. Created groups, related to all elements inside each respective group, selected all 3 groups and clicked p "distribute horizontal centers.  Worked fine, I understand your dilemma.

    Before you distribute:

    After:

Maybe you are looking for

  • Question external display

    Hello I recently bought a henge dock and the external display for my MacBook Pro 15 "." The henge dock has a bolt of lightning from the macbook. My monitor has an extra display port and HDMI in, this looks a bit similar to HDMI. I'm looking for a cab

  • El capitan duplicate contacts

    When I installed El Capitan, all contacts in Contacts has been duplicated.  How can I merge these contacts and keep changes made since the installation of El Capitan?

  • Question about the battery warranty

    Hello I own a satellite L300 and with everest, I discovered that my 10 month battery has a capacity of 12% loss.It is still under the 1 year warranty.I searched everywere and I couldn't find specific conditions for warranty Toshiba battery, so I want

  • Fixing Winsows XP system

    How can I get a disk to load once a person has worked on my computer.  I think he took something that he shouldn't have. I can't burn a CD or a record of information allows you to download any type of program. Is it possible to replace thate never wh

  • I can't open a program installed-

    I get the following information:Cannot find ordinal 52750 / 52755 in GoLive.exe dll-filling