Help! Marquee tool continues to change my selection!

IM starting to get really desperate... Please help me with this problem:

Each time I'm using the lasso polygonal tool photoshop adds 'cubic' to my selection.

So I can't fill a simple selection without getting these cubes along and its

Super boring!

Here is a picture of how it looks:

Bild 1.png

Please note it is a complete empty document and it does not help to new documents.

The big triangle in the selection is the one that I wanted to do, but as you can se, photoshop

has added another form inside with another place on the lower left side of it.

The squares appears always different, sometimes just sometimes more big like this.

Im getting CRAZY!

Edit: I downloaded the latest updates and it now seems to work fine. A weird bug in photoshop maybe?

Tags: Photoshop

Similar Questions

  • Bridge continues to change the selection of the sort each time that I reopen it the Bridge window... WHY?

    Bridge continues to change the selection of the sort each time that I reopen it the Bridge window... WHY?

    I continue to get "sort by modified date" but each whenever I open it a window that it is for manual selection.

    I searched the preferences but impossible to find something to help.  It didn't used to do this...

    John

    Well, I solved the puzzle myself.

    I noticed that somehow a stray .psd file was stuck in my side bar of the Mac Finder.  Don't ask me how it got there.

    At the beginning I couldn't delete it – until I tried a Mac forum and they suggested I hold down the command key and drag it off... to poof!

    It worked.

    And when I went back to bridge - now the bad behavior disappeared!  And when I close the window Bridge and reopen - the choice to "classify" same home!

    Yay... it's a small step for me, and one small step for computerkind.

  • Can I lock the marquee tool to make the only rectangles?

    I lose track of the issue of whether the selection tool is selected - and press M to get, and often this means I get the circle marquee. Is it possible to lock the marquee tool to make a rectangular selection only? that is, I have to reach the top in the Toolbox to make the circle--as was the case in earlier versions of the PSD.

    There is one very annoying thing that I hope that they have considered!

    Correction: Based on the M key is changing your selection Rectangle rectangle, ellipse, then you should go to Edit > Preferences > General and tick "use Shift key for tool switch."

    This will require then you hold the SHIFT key before you press M and your marquee tool will stay on the rectangle.

  • 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){}
    };
    
  • 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.

  • 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.

  • Hello I am a student and I have a problem with the tool Selection (V). When I opened the file AI CC with CS6 selection tool doesn't allow me to change the selection. What can I do? (I have reinstall AI CC and the problem persists)

    Hello I am a student and I have a problem with the tool Selection (V). When I opened the file AI CC with CS6 selection tool doesn't allow me to change the selection. What can I do? (I have reinstall AI CC and the problem persists)

    Ivan,

    If it's on the rectangular objects, you may have encountered the bug Rectangle Live which is limited to the MAC versions from 10.7 and 10.8, but not of 10.9 (Mavericks) or 10.10 (Yosemite). If all goes well, the bug will be fixed soon.

    Thus, a switch for the Mavericks or Yosemite with a reinstall might be the way to solve it here and now.

    To get around it, in each case, it is possible to develop direct Rectangles to get the normal old shaped rectangles or Pathfinder > unit, or use the scale tool or the free transform tool.

    A more permanent way round that is to create normal old shaped rectangles, after running the free script created by Pawel, see this thread with download link:

    https://forums.Adobe.com/thread/1587587

  • The options for my move tool bar has changed.  Is no longer an automatic selection option, does anyone know how to get it back?

    The options for my move tool bar has changed.  Is no longer an automatic selection option, does anyone know how to get it back? Thank you!

    You have the close option enabled bar, so it can be confusing at first.

    Anyway the left most icon is that of automatic selection

    If you want to return to the options bar your opportunity, go to Photoshop > Preferences > Interface and uncheck the box Enable close Bar Options , and then restart photoshop.

  • CANNOT GET RID OF THE ARROW ON THE LINE OF MYT TOOL.  CANNOT CHANGE THE COLOR OF THE STROKE.  Help

    CANNOT GET RID OF THE ARROW ON THE LINE OF MYT TOOL.  CANNOT CHANGE THE COLOR OF THE STROKE.  Help

  • 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.

  • I chose a city of the weather (in Florida) that can be displayed on my homepage. It continues to change in New York. How can I stop this from happening?

    on my homepage, I chose a city in Florida to view the current weather it. However the city I chose continues to change in New York every time I log on. How can this be corrected?

    It is possible that these details are stored in a cookie, as shown above by John99.

    • Create a cookie 'allow' except to keep these cookies, in particular in the case of secure websites and when the cookies expire when Firefox is closed.
    • Tools > Options > privacy > Cookies: Exceptions

    In case you use "clear history of Firefox closing:

    • do not delete Cookies
    • do not delete Site preferences

    Note that compensation "Preferences of Site" clears all exceptions for cookies, images, pop-up windows, installation of software, passwords, and other specific data from Web site.

    Deletion of cookies will delete all specified (selected) cookies, including cookies with an exception allowing you want to keep.

  • My computer continues to change after closing browser default search engine.

    After I downloaded the programs winrar, bittorrent and a playstation Emulator 2 my browser continues to change the default to yahoo search engine. I change it back every time, but when I close the browser completely change just return. I have reset firefox as a last resort, but STILL the change back to yahoo. Then I went to delete cookies and still has not changed.

    Hello

    Try Firefox Safe mode to see if the problem goes away. Safe mode is a troubleshooting mode, which disables most of the modules.

    (If you use it, switch to the default theme).

    • Under Windows, you can open Firefox 4.0 + in Safe Mode holding the key SHIFT key when you open the desktop Firefox or shortcut in the start menu.
    • On Mac, you can open Firefox 4.0 + in Safe Mode holding the key option key when starting Firefox.
    • Under Linux, you can open Firefox 4.0 + with leaving Firefox then go to your Terminal and running Safe Mode: firefox-safe-mode (you may need to specify the installation path of Firefox for example/usr/lib/firefox)
    • Or open the Help menu and click on the restart with the disabled... modules menu item while Firefox is running.

    Once you get the pop-up, simply select "" boot mode safe. "

    If the issue is not present in Firefox Safe Mode, your problem is probably caused by an extension, and you need to understand that one. To do this, please follow article Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems .

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before you open Firefox for normal use again.

    When find you what is causing your problems, please let us know. It might help others who have the same problem.

    Thank you.

  • The time on the clock continues to change at the wrong time.

    The time on the clock continues to change at the wrong time.

    First of all, make sure that your clock is set to the correct time zone.

    Right click on the clock.

    Select adjust date and time.

    Then select change time zone.

    If your time zone is correct, you may have a bad CMOS battery but you can get around it by having the system more often with the internet time synchronization.

    1. Go to start
    2. Success and type task entry
    3. Click the arrow on the left next to the Task Scheduler Library
    4. Click the arrow next to Microsoft
    5. Click the arrow next to windows
    6. Click the folder to synchronize the time
    7. At the top right click on Synchronize
    8. Click on properties
    9. Go down and check run with highest privileges
    10. Click the triggers at the top tab
    11. Double-click the trigger that is listed in the box of
    12. On the top of the page task Begin at startup
    13. Uncheck delay task
    14. Check Repeat task (change in 5 minutes)
    15. On the right hand side change indefinitely the duration of
    16. Click OK twice

    Exit Task Scheduler

    Turning the computer off and see if it works

    By clicking on the White Star congratulations on the left is a way of saying thanks!

    I hope this helps!

    Nice day.

  • settings can continue to change for less bright display 20 minutes and never sleep, how to fix?

    settings can continue to change for less bright display 20 minutes and never sleep, how to fix? I took 1 hour, and it keeps changing back how to fix? I recently got a dynex keyboard and it has a sleep button I press the keyboard model number is DX-KBWM2.  How to fix?

    Hello Taperum,

    Thank you for the update on the question and sorry for a delayed response.

    If the problem still persists, there may be a chance that the problem is due to system files, so I suggest you to check the system files are they work very well or not and to check who are trying to run the (SFC) System File Checker tool.

    Scan SFC will be scans all protected system files and replaces incorrect versions with appropriate Microsoft versions.

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7

    • Go to Start, click all programs and open the Accessories.
    • Right-click on command prompt in the list programs, and then select run as administrator. If you are prompted for an administrator password or for confirmation, type your password, or click OK.
    • In the command prompt, type the following command and press ENTER:

    sfc/scannow

    For more information, refer to this link:

    http://support.Microsoft.com/kb/929833/en-us

    Get back to us with the result of the analysis so that we can offer you additional troubleshooting steps.

    Kind regards.

  • Change the selection of Illustrator keys

    Hello

    It seems that illustrator adds and subtracts to the selection with the same command: shift + click. I want to change this so that the add command is shift + click while subtraction is ctrl + click.

    This would make things much easier, for example: I have a lot of straight lines at the end of the work. However, the few lines are shorter. I want to select all of the short lines, which vary in length, but are still shorter than adults.

    Currently I select all the rows and then I have to move click on each Sling to turn it off.

    If orders could change, I could select all the lines, then ctrl + click and create a marquee selection barely touch the longer lines, deselection of them. Note This is just one example, I face daily situations, where having the same command for two inherently different actions makes my job of 5 minutes take 30.

    This would be consistent with the many software out there like Autocad, Rhino, etc..

    Is this possible? Thanks in advance.

    Shynn

    You can only wither the Illustrator lasso tool

    Shift = add to selection

    Option/Alt - subtract the section form.

    Pointer tools no will allow you to use access keys as you asked.

Maybe you are looking for

  • iOS 9.3.1 corrupted iBooks

    I have installed iOS 9.3.1 plus 9.3.0 on my iPad 3/4 (128 Gb WiFi - cell). iBooks 4.7 was fine before the update, with different subfolders containing books by author and category PDF. After the upgrade, all subfolders are gone. I searched an author,

  • Maintenance of the Cybershot RX1002

    Does the RX1002 need annual maintenance? I'm going on a trip to Tonga to photograph whales and hold my camera in great shape. Do I need to repair the camera? Thank you Sandra

  • Ode mathscript

    You can use ode23, ode45, etc. in Mathscript?

  • I want to enjoy my AVERAGE, normal windows XP themes to return (Please read details)

    Please read all the details: I use Windows XP SP3 (but not sure if it was 1 SP2 or not) but my problem I want to set immediately (or as soon as possible [but with all my hope we hope immediately] this) is my Windows XP themes. The computer I use used

  • Scanner HP Photosmart C4780 does not

    I have a HP Photosmart C4780 printer and OS X 10.9.5.  I'm trying to analyze something to PDF and I get a black picture.  When I scan a 8.5 x 11 size paper as an image it scans only 1/4 of the document.  Please let me know if there is a driver will f