PS Elements 13 - do not select marquee tool

Have recently updated to 13 PSE and don't know if I used the marquee from the upgrade tool.  Any effort to select with the marquee tool cause no selection.  It's almost as if the tool does not know the left mouse button is pressed (have tested the left button of the mouse with several other applications, no problems and works of left button of the mouse to other PES functions).  Also tested to ensure that it is not a case of drawing selection lines simply do not - I have try a selection then copy/paste and I always get a dough in the center of the layer.  Tried to reset and reboot PSE without change preferences.

Hoping someone has seen this before and has any suggestions on what I can try.

Thank you

Try to reset the tool. There should be a box with lines on this subject on the options bar of the tool on the right. Click on this to reset.

Tags: Photoshop

Similar Questions

  • Help selection marquee tool

    Hello

    When we choose object via the marquee tool, I need to cut this object and paste in the same place as layer 1, and resize the object to 10% and re select the second object and do the same process.

    But I'm unable to do this process.

    Please find the bottom, any help is very appreciated.

    aDoc var = app.activeDocument;

    var salt = aDoc.selection;

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

    var idCpTL = charIDToTypeID ('CpTL");

    executeAction (idCpTL, undefined, DialogModes.NO);

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

    var idslct = charIDToTypeID ("TPCV");

    var desc16 = new ActionDescriptor();

    var idnull = charIDToTypeID ("null");

    ref10 var = new ActionReference();

    var idLyr = charIDToTypeID ("Lyr");

    Ref10.putName (idLyr, "Layer 1");

    desc16.putReference (idnull, ref10);

    var idMkVs = charIDToTypeID ("MKV");

    desc16.putBoolean (idMkVs, false);

    executeAction (idslct, desc16, DialogModes.NO);

    aDoc.activeLayer.resize (105 105, AnchorPosition.MIDDLECENTER)

    Alert ('OK', 'Test')

    How to select the second need help object.

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

    var idCpTL = charIDToTypeID ('CpTL");

    executeAction (idCpTL, undefined, DialogModes.NO);

    var idslct = charIDToTypeID ("TPCV");

    var desc25 = new ActionDescriptor();

    var idnull = charIDToTypeID ("null");

    var ref18 = new ActionReference();

    var idLyr = charIDToTypeID ("Lyr");

    ref18.putName (idLyr, 'Layer 2');

    desc25.putReference (idnull, ref18);

    var idMkVs = charIDToTypeID ("MKV");

    desc25.putBoolean (idMkVs, false);

    executeAction (idslct, desc25, DialogModes.NO);

    aDoc.activeLayer.resize (105 105, AnchorPosition.MIDDLECENTER)

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

    var idCpTL = charIDToTypeID ('CpTL");

    executeAction (idCpTL, undefined, DialogModes.NO);

    var idslct = charIDToTypeID ("TPCV");

    var desc30 = new ActionDescriptor();

    var idnull = charIDToTypeID ("null");

    var ref22 = new ActionReference();

    var idLyr = charIDToTypeID ("Lyr");

    ref22.putName (idLyr, "Layer 3");

    desc30.putReference (idnull, ref22);

    var idMkVs = charIDToTypeID ("MKV");

    desc30.putBoolean (idMkVs, false);

    executeAction (idslct, desc30, DialogModes.NO);

    aDoc.activeLayer.resize (105 105, AnchorPosition.MIDDLECENTER)

    Kind regards

    Vinoth

    The script that I found and modifed begins with a transparent activeLayer. It performs some tasks not necessary because you want to start with a layer with a selection. So instead of modifing the script to change the document mode, I modified the script to work with the other modes. I think that is should now work with grayscale mode, RGB, lab, and CMYK. Note, that I don't have to add a test for fashion and this may fail with other modes.

    // original script can be found at  http://forums.adobe.com/message/4272787#4272787
    // modified to start with a selection instead of a transparent layer
    // and to work with other modes
    // then resize each new layer
    #target photoshop
    if (app.documents.length > 0) {
        var percent = Number(prompt('Enter percent to resize. Please enter a whole number greater than 0.',10));
        if(percent != NaN && percent > 0){
            myDocument = app.activeDocument;
            var theMask = myDocument.channels.add();
            myDocument.selection.store(theMask);
            selectComponentChannel();
            var check = true;
            // set to pixels;
            var originalRulerUnits = app.preferences.rulerUnits;
            app.preferences.rulerUnits = Units.PIXELS;
            // set to 72ppi;
            var originalResolution = app.activeDocument.resolution;
            myDocument.resizeImage (undefined, undefined, 72, ResampleMethod.NONE);
    
            var theLayer = myDocument.activeLayer;
            myDocument.selection.load(theMask, SelectionType.REPLACE);
    
            // create work path;
            myDocument.selection.makeWorkPath(1);
            var subPathsNumber = myDocument.pathItems[myDocument.pathItems.length-1].subPathItems.length;
            // check for a high number of paths;
            if (subPathsNumber > 30) {
                      check = confirm("warning\rthere appear to be "+subPathsNumber+" elements.\rif this number is too high noise may have caused them.\rthis may result in a crash.\rproceed?")
                      };
            // do the operation;
            if (check == true) {
                      var thePathInfo = collectPathInfo(myDocument, myDocument.pathItems[myDocument.pathItems.length-1]);
            // create one path for every subpathitem:
                      for (var m = 0; m < thePathInfo.length - 1; m++) {
                                var theSubPath = thePathInfo[m];
                                var aPath = createPath ([theSubPath], m+"_path");
                                aPath.makeSelection(0, true, SelectionType.REPLACE);
                               myDocument.selection.load(theMask, SelectionType.INTERSECT);
            // layer via copy;
                                try {
                                          executeAction( charIDToTypeID( "CpTL" ), undefined, DialogModes.NO );
                                          myDocument.activeLayer.resize(100+percent,100+percent, AnchorPosition.MIDDLECENTER);
                                          myDocument.activeLayer.name = theLayer.name + "_" + m
                                          }
                                catch (e) {};
                                myDocument.pathItems[myDocument.pathItems.length-1].remove();
                                myDocument.activeLayer = theLayer;
                                };
                      theMask.remove();
                      };
            // reset;
            app.preferences.rulerUnits = originalRulerUnits;
            myDocument.resizeImage (undefined, undefined, originalResolution, ResampleMethod.NONE);
        }
    };
    ////////////////////////////////////
    ////////////////////////////////////
    ////////////////////////////////////
    ////// function to create path from array with one array per point that holds anchor, leftdirection, etc, 2010 //////
    function createPath (theArray, thePointsName) {
    var originalRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.POINTS;
    lineSubPathArray = new Array ();
    if (theArray[theArray.length - 1].constructor != Array) {var numberOfPoints = theArray.length - 1}
    else {var numberOfPoints = theArray.length};
    for (var b = 0; b < numberOfPoints; b++) {
              var lineArray = new Array ();
              for (c = 0; c < (theArray[b].length); c++) {
                        lineArray[c] = new PathPointInfo;
    
                        if (!theArray[b][c][3]) {lineArray[c].kind = PointKind.CORNERPOINT}
                        else {lineArray[c].kind = theArray[b][c][3]};
    
                        lineArray[c].anchor = theArray[b][c][0];
    
                        if (!theArray[b][c][1]) {lineArray[c].leftDirection = theArray[b][c][0]}
                        else {lineArray[c].leftDirection = theArray[b][c][1]};
    
                        if (!theArray[b][c][2]) {lineArray[c].rightDirection = theArray[b][c][0]}
                        else {lineArray[c].rightDirection = theArray[b][c][2]};
    
                        };
              lineSubPathArray[b] = new SubPathInfo();
              lineSubPathArray[b].operation = ShapeOperation.SHAPEADD;
    
              if (theArray[b][theArray[b].length - 1].constructor == Array) {lineSubPathArray[b].closed = true}
              else {lineSubPathArray[b].closed = theArray[b][theArray[b].length - 1]};
    
              lineSubPathArray[b].entireSubPath = lineArray;
              };
    var myPathItem = app.activeDocument.pathItems.add(thePointsName, lineSubPathArray);
    app.preferences.rulerUnits = originalRulerUnits;
    return myPathItem
    };
    ////// function to collect path-info as text //////
    function collectPathInfo (myDocument, thePath) {
    var originalRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.POINTS;
    var theArray = [];
    for (var b = 0; b < thePath.subPathItems.length; b++) {
              theArray[b] = [];
              for (var c = 0; c < thePath.subPathItems[b].pathPoints.length; c++) {
                        var pointsNumber = thePath.subPathItems[b].pathPoints.length;
                        var theAnchor = thePath.subPathItems[b].pathPoints[c].anchor;
                        var theLeft = thePath.subPathItems[b].pathPoints[c].leftDirection;
                        var theRight = thePath.subPathItems[b].pathPoints[c].rightDirection;
                        var theKind = thePath.subPathItems[b].pathPoints[c].kind;
                        theArray[b][c] = [theAnchor, theLeft, theRight, theKind];
                        };
              var theClose = thePath.subPathItems[b].closed;
              theArray = theArray.concat(String(theClose))
              };
    app.preferences.rulerUnits = originalRulerUnits;
    return theArray
    };
    function selectComponentChannel() {
        try{
            var map = {}
            map[DocumentMode.GRAYSCALE] = charIDToTypeID('Blck');
            map[DocumentMode.RGB] = charIDToTypeID('RGB ');
            map[DocumentMode.CMYK] = charIDToTypeID('CMYK');
            map[DocumentMode.LAB] = charIDToTypeID('Lab ');
            var desc = new ActionDescriptor();
                var ref = new ActionReference();
                ref.putEnumerated( charIDToTypeID('Chnl'), charIDToTypeID('Chnl'), map[app.activeDocument.mode] );
            desc.putReference( charIDToTypeID('null'), ref );
            executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
        }catch(e){}
    };
    
  • Cntrl + [PS-CC/15] Marquee tool

    How can I change to use the single arrow when I press on the control using the marquee tool? As before, in Photoshop CC/14. Now, the arrow is one who seizes anything on top with left click. (Or when the new shortcut is.)

    This

    computer-cursor-pointer.jpg

    instead of

    screenshot-cdn.flaticon.com-2015-11-10-09-57-08.png

    TKS

    When you have selected move - not the marquee tool tool, you have "Auto select" selected? This will cause the same behavior when you press the CTRL key when you use the marquee selection tool: he chooses the top layer of the majority to pass.

  • 14 Photoshop. I'm trying to merge (do a panorama) 2 photos.  The 'automation tools are grayed out', which means that I can not select this option.

    I just upgraded from photoshop 10 to 14. I'm trying to merge (do a panorama) 2 photos.  It was very fast and easy in Photoshop 10.  In photoshop 14 the 'automation tools are grayed out', which means that I can not select this option.  I do something wrong or my installation does not work?

    In the 14 PES Editor, adobe has moved the Photomerge features to guided.

    Photoshop elements help | What's new in Photoshop elements 14

    Photoshop elements help | Guided - mode Photomerge edits

  • Editing audio first in Audition, when the marquee tool, the changes do not take effect or I would like to export.

    Editing audio first in Audition, when you use the marquee tool to get rid of unwanted 'knocking' noise audio, the changes do not take effect or I would export after changes in the spectral display.

    No indication on how to save the changes to the marquee selection tool would be great.

    Hmm.  You did something for the audio in the selection?  It looks not to the file has been modified at all, and the registration option is not enabled, unless a change has occurred.  I suppose you try to remove or reduce the volume of the sound inside the selection rectangle, is that correct?  With this selection, you can press DELETE to remove it completely, or set the volume floating just above the selection of lower button.

    It also seems that you stopped reading, and while that save the selection under will be activated pause, of many other commands will not.

    So, try in the following order:

    1 stop playback.  Is File > Save now activated?

    2. otherwise, do some edit to this file.  You will know that the file is considered 'dirty' when an asterisk * appears next to the name of the file in the files Panel and the top of the editor Panel.

    3. There is no number 3.  I feel confident, one of the first two options will work.  Once the file is saved and overwritten, go back to the first and you should hear the content updated the.

  • Photoshop Elements stuck in upper case, but in all caps is not selected on the keyboard

    I have no idea how this happened, but I can't come down all caps no matter what I use the font.

    If anyone can help, I would be very grateful. Please be as descriptive as possible. I'm not familiar with the terminology of Photoshop Elements.

    Thank you

    See if the text tool reset helps.

    With the type tool selected, click on the small arrow facing downwards and select Reset Tool.

  • Windows mail. When sending a new email, I want to use the BCC field, that I can not select because it is not on the new Message. __How make CCB to come when I create a new message? This something __Is I can add tools please?

    Windows mail. When sending a new email, I want to use the BCC field, that I can not select because it is not on the new Message.
    How can I get the future BCC when I create a new message?
    Can I add tools please?

    Thanks for the reply Bruce Hagen. I am very grateful.

    Dave.

    In a new message window: view | All the headers. Check it out. Or, simply click on the button to easily add to your contacts list to: To, CC, or BCC.

    Bruce Hagen ~ MS - MVP [Mail]

  • Tool do not select Direct Selection

    Hi, can someone help please, I'm new to adobe and for some reason, that the direct Selection tool will not select anything, I got something off or am I stupid?

    You must use the tool path Selection, not the direct Selection tool.

  • Question of selection elements 2.0 to CS6 upgrade tool

    This is probably a stupid question.  But in Elements 2.0, the selection tool selects only literally what you want (such as a toothbrush).  In CS6, I can't find a similar selection tool.  Quick selection always makes it too wide selection and I end up having to constantly add and subtract this small success.  I know he has more advanced allows you to set the selection, but I want to know how to choose easily which is in my way of the brush.  I hope I conveyed what I'm trying to make it clear... Any help?

    I'm guessing that your taliking about the tool selection in photoshop elements brush 2.

    The quick mask in photoshop cs6 mode is similar to the mode mask selection Brush tool in pse 2.

    more information:

    http://help.Adobe.com/en_US/Photoshop/CS/using/WS649373C8-0D0C-4239-A2E2-B11124094BCB.html

  • get the selection instead of the puppet pin tool marquee tool

    I imported a png file in the new composition and wanted to distort the image with the puppet tool, but instead of the puppet pin tool that I always get the marquee tool

    tried to keep Alt, Shift, Ctrl, did not help

    puppet pin tool works fine on the other compositions. It's the first time I encounter such a problem with the puppet tool. What is going on?

    AE CS6 on win7

    First question, what size is this file? I don't see any dimension.

    Second question, it is necessary to have layers in this picture? Looks like you apply puppet pin on the entire fly.

    Third question, have you tried to reduce the size of the file in Photoshop to about the size of your computer and then saving it as a png 24-bit or single-layer PSD or tiff with an alpha channel?

    It is difficult to know because there is no detail about right PSD, but it could be wrong, too much color space, or have another problem that I don't see.

  • Drawing Markup tools are still not selected

    I recently switched from Acrobat 9 Pro to Acrobat X and I'm having a little trouble understanding the new interface.

    A problem is that when I used a drawing markup tool in Acrobat 9, it would remain to chosen so that I could draw lines in a number of places to stay.  With Acrobat X, whenever I draw a line the tool becomes selected, and I have to select all again in order to draw the next line.  I have to do something wrong.  A company as well as Adobe would not have designed such a difficult to use the tool.

    Can someone tell me how to keep the chosen drawing tools?

    Right, that is why he must then select the tool drawing that you want to use, as shown. It should appear after you do.

    Or you can select the drawing tool that you want to use, press Ctrl + E, and you should see the checkbox in the properties toolbar.

  • I lost the marquee tool cursor control

    Running PSE9 under MAC OS X 10.6.8 Snow Leopard.

    I was setting in flag of borders of several pictures using the marquee tool > select > feather > inverse selection > remove and it works well.  Then I started another picture and the marquee selection tool now won't give me a rectangle of varying size, but rather a little square that moves, but will not change its size (unlike the option shift which, if I understand correctly, lock in a square shape, but allows a change of size).  I have to hit keys wrong somehow, but what?  And how to return to normal operation?  Attached picture shows the small square in the upper left corner of my image.

    Oh yes, Happy New Year!

    Square select.jpg

    To the left of the options bar is a small triangle. Click on it and choose Reset tool.

  • Rectangle does not select the entire image

    I used Photoshop 9 for quite awhile, but the rectangular mark does not work properly.  I don't stretch and select the entire image.  I reloaded the software without modification.  What I don't want to change that?

    Hello, look in your toolbar Option: you have fixed ratio and fixed size, selected in the Style: fall down. Select normal for a marquee 'free. '

    Also, make sure that you don't have a pen (if should be + 0 px like in my picture).

    You can also right-click on the marquee in the options even bar and select "reset tool", if the steps above do not work.

    I hope this helps!

  • Is there a selection Brush tool in CS5?

    I recently moved to the top of Photoshop Elements for CS5 which included a tool selection and more brush brush for quick selection.  Selection Brush tool to paint a selection free style without being bothered by the 'Quick' function which provides guess everything where you can select.  I couldn't find the selection Brush tool in CS5.  Is this one?  The lasso is not as easy to use.

    Thank you.

    The "brush selection" in the elements is a subset of the Quick Mask mode in Photoshop.

    Select fast is something else.

  • PSE7, creation of thumbnail, which is Oval Marquee tool?

    . I've used PSE3 for photo edting.  I now PSE7. I am creating a "classic vignette effect" as described in the book of PSE3 Kelby, pg 300-301.

    This effect is intended to highlight the baby inside an oval with edges rounded and blur everything behind the main subject.   By clicking on the Rectangle selection tool, I find no circle or oval tools, just the squares and rectangles. I need a tool to draw an oval space around my baby's face.  Under the framing box icon there are squares and triangles, no circle or oval. You can direct me further in this technique using simple instructions?  I appreciate your answers!

    Are you sure that you have the marquee selection tool and not the shape tool? The marquee is way up in the Toolbox with the shape tool. It's the dotted rectangle bit and when you click on it, if you hold down the mouse, or if you right-click, you will get the option for the elliptical marquee.

Maybe you are looking for

  • who was the last version to allow the opening links in a new window by default?

    Used to have the opportunity to set as default, when I clicked on a link, it would always open in a new window. I want to revert to this version... If it is supported or not! I HATE THE TABS!

  • Portege M200 and dual display

    Hi I have a M200 which I use as well in the form of tablets & to my office as my workstation. I run a 17 "LCD screen directly to the M200 with no docking station. I want to be able to extend my desktop on the M200 LCD screen, while the main office re

  • Download problems image cable Canon camera

    I have a brand new computer laptop Mac Book Pro with OS El Capitan, and I am trying to download my pictures from my compact camera Gx1 to the laptop via the camera download cable. Of course I've already installed the Canon Canon Utilities Window /Cam

  • Lenovo companion opens no more

    I have Lenovo Yoga. It is quite new. Win 10 included. Now, for some reason or another companion of Lenovo is unbootable. It is said that there's a problem and you need to restart pc. But the reboot will not help. I also treid to re - install app comp

  • Reset the password of bios pavilion dv7. Key: (50776873). Help, please.

    Try resetting the password of the bios PAVILION dv7 1267cl. It gives a KEY: (50776873).  How do reset you the bios password?