CC2015 drag rectangle selection does not work

Since I installed the CC of 2015 for photoshop and illustrator, 95% of the time that I open a program, I can't drag a selection.  I can try again and again, but nothing seems to happen, and then all of a sudden I get a part of a selection.  I can close and open the program and sometimes it starts to work as never was.  I can go in any other program (even just on my desktop) and drag and it will start by selecting without problem.  I can not even open the program, try to drag and get nothing, then move my mouse the program on the desktop and it pulls very well and go back and nothing.  This has never been a problem with cc2014.

Any ideas?  It's just a simple Logitech mouse and I'm just trying to select a portion of an image in photoshop or select traces in illustrator.  It is just as I'm not click and drag.  Click works fine 100% of the time, simply click and drag is not.  Has anyone else seen this and y at - it one solution other than go back to 2014?

BTW, it wasn't a problem to Adobe, it ends up being a problem with synergy, a program to share keyboard and mouse with other computers.  Upgrades to the latest version and it fixed the problems.  I just wanted to day in case someone else runs into this.

Tags: Photoshop

Similar Questions

  • 29,0 Firefox, print 'selection' does not work.

    When I select a section of a page, then use the "print" button, the 'selection' print option does not work. It is not highlighted in the print menu.

    The button "print" 'action' in Firefox 29 differs from earlier versions. Now, he opens preview print rather than going directly to the box of "native print dialog. That breaks the ability to print a 'selection '.

    My advice is to highlight the selection , then use {Ctrl + P} to start printing until Mozilla fixes the action of the "print" button in a newer version of Firefox.

  • Static assets selection does not work in 10.2

    Here, dear

    I have an application with selection of static assets, whose exhibition structions aset looks like this:

    |----assets
    |     |----720x720
    |           |----ui1.qml
    |----ui1.qml
    

    The intention is that when run on devices of 720 x 720 (q10/CAD), must use the ui1.qml sub-folder '720 x 720'.

    Everything works fine when build Momentics 10.1, but when build Momentics 10.2, the built application does not work. Which means that it always uses the ui1.qml under the heading 'assets' regardless of the DPI of the device.

    There that anything must be updated for the 10.2?

    Thank you

    Dong

    Just to finance a solution soon as I posted this: to add an entry in assets/gear - assets.xml:

    
    

    Hope this helps someone as well.

    Dong

  • Bindings.Select does not work with the primitive properties like string etc?

    My code works when I use a < String > ObjectProperty, this however does not work when I use a string instead.

    Don't know if this Bindings.select behavior is a bug or expected.

    The NBS are:

    The impression is:

    ObjectProperty < String >--> < String > ObjectProperty: abc

    String-> string: null

    String-> < String > ObjectProperty: null

    I expect all cases to print 'abc' good

    import javafx.beans.binding.Bindings;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.beans.property.SimpleStringProperty;
    import javafx.beans.property.StringProperty;
    
    public class SelectBindingTest {
    
        public static class A {
    
            private StringProperty comment = new SimpleStringProperty(this, "comment");
            private ObjectProperty<String> commentObj = new SimpleObjectProperty<>(this, "commentObj");
    
            String getComment() {
                return comment.get();
            }
    
            StringProperty commentProperty() {
                return comment;
            }
    
            void setComment(String comment) {
                this.comment.set(comment);
            }
    
            public String getCommentObj() {
                return commentObj.get();
            }
    
            public ObjectProperty<String> commentObjProperty() {
                return commentObj;
            }
    
            public void setCommentObj(String commentObj) {
                this.commentObj.set(commentObj);
            }
        }
    
        public static class B {
            private ObjectProperty<A> member = new SimpleObjectProperty<>(this, "member");
    
            A getMember() {
                return member.get();
            }
    
            ObjectProperty<A> memberProperty() {
                return member;
            }
    
            void setMember(A member) {
                this.member.set(member);
            }
        }
    
        public static void main(String[] args) {
            B b = new B();
            A member = new A();
            b.setMember(member);
    
            final String expectedString = "abc";
    
    // this works
            SimpleObjectProperty<String> targetStringObjProperty = new SimpleObjectProperty<>("initialTargetText");
            member.setCommentObj("initialSourceText");
            targetStringObjProperty.bind(Bindings.<String>select(b.memberProperty(), "commentObj"));
            member.setCommentObj(expectedString);
            System.out.println("ObjectProperty<String> -> ObjectProperty<String>: " + targetStringObjProperty.get());
    
    // this doesn't work
            SimpleStringProperty targetStringProperty = new SimpleStringProperty("initialTargetText");
            member.setComment("initialSourceText");
            targetStringProperty.bind(Bindings.selectString(b.memberProperty(), "comment"));
            member.setComment(expectedString);
            System.out.println("StringProperty -> StringProperty: " + targetStringProperty.get());
    
    // this doesn't work either
            targetStringObjProperty = new SimpleObjectProperty<>("initialTargetText");
            member.setComment("initialSourceText");
            targetStringObjProperty.bind(Bindings.<String>select(b.memberProperty(), "comment"));
            member.setComment(expectedString);
            System.out.println("StringProperty -> ObjectProperty<String>: " + targetStringObjProperty.get());
        }
    
    }
    
    
    
    

    EDIT: Sorry for the horrible formatting. Can't seem to understand how to properly insert empty lines.

    Read the fine print in http://docs.oracle.com/javafx/2/api/javafx/beans/binding/Bindings.html#select(javafx.beans.value.ObservableValue, java.lang.String...)

    All classes and properties used in an affair of selection must be public.

    If you do your commentProperty, getProperty (and setProperty, although I suppose it doesn't matter) methods in public class has, it works as expected.

    Post edited by: James_D (link fixed javadoc)

  • Problem slider disappears / Drag and Drop does not work

    Hey everybody,

    I have an urgent problem.

    Three butterflies are supposed to be slipped into an object.  My custom cursor is a kind of net to catch these butterflies.


    For the cursor, I have this code:

    cursor_mc.StartDrag ("true");
    Mouse.Hide ();

    My drag and drop code is:

    cursor_mc.addEventListener (MouseEvent.MOUSE_DOWN, startMove);
    redbutterfly_mc.addEventListener (MouseEvent.MOUSE_DOWN, startMove);
    violetbutterfly_mc.addEventListener (MouseEvent.MOUSE_DOWN, startMove);
    yellowbutterfly_mc.addEventListener (MouseEvent.MOUSE_DOWN, startMove);

    cursor_mc.addEventListener (MouseEvent.MOUSE_UP, stopMove);
    redbutterfly_mc.addEventListener (MouseEvent.MOUSE_UP, stopMove);
    violetbutterfly_mc.addEventListener (MouseEvent.MOUSE_UP, stopMove);
    yellowbutterfly_mc.addEventListener (MouseEvent.MOUSE_UP, stopMove);


    function startMove(evt:MouseEvent):void {}
    redbutterfly_mc.StartDrag ();
    cursor_mc.StartDrag ();
    violetbutterfly_mc.StartDrag ();
    yellowbutterfly_mc.StartDrag ();
    }

    function stopMove(evt:MouseEvent):void {}
    redbutterfly_mc.stopDrag ();
    cursor_mc.stopDrag ();
    violetbutterfly_mc.stopDrag ();
    yellowbutterfly_mc.stopDrag ();
    }

    But when I'm clicking on a butterfly my cursor stops to move and stay on the throttle position, that I'm dragging. After a fall, there is no cursor at all so we don't know where the mouse is currently located.

    Anyone know why it does not work? I am currently working with a mousefollower, because right now, it's the only way it works...

    The mousefollower code is:

    addEventListener (Event.ENTER_FRAME, enterFrameHandler)

    function enterFrameHandler(event:Event):void {}
    cursor_mc.x += cursor_mc.mouseX / 4;
    cursor_mc.y += cursor_mc.mouseY / 4;
    }

    But now I have the problem that only the Yellow Butterfly moves even if I'm clicking on red or purple...

    Please help me! Thank you in advance!

    Try to use the following code to manage the cursor_mc...

    Mouse.Hide ();
    cursor_mc.mouseEnabled = false; keep the cursor to interfere
    this.addChild (cursor_mc); to place the cursor at the highest level

    function moveCursor(evt:MouseEvent_=_null):void {}
    cursor_mc.x = mouseX;
    cursor_mc.y = mouseY;
    }
    stage.addEventListener (MouseEvent.MOUSE_MOVE, moveCursor);

    moveCursor(); to locate initially mouseover

  • Pavilion g6 2307el: LEGACY BOOT SELECTION does not WORK

    Hi, first sorry for my bad English , I have a big problem...

    4 days ago, that I decided to install a new os on my pc (pavilion g6 2307el).

    I installed win 7 64 bit, and to do this, I enabled the legacy boot.

    now, I have some problems with some drivers and for this reason I want to change my os originally win 8 64-bit.

    I have the original cd of victory CV 8 (when I installed win 7 has deleted everything on my pc; recovery partition ecc..) but it does not work... Infact when the legacy box is turned on and I press the f9 key I see 2 option. boot to the efi file or boot from the hard drive (I can't see cd boot or boot usb or other) and when I put inherited boot off the system tell me that it isn't any os on my pc, and in this case when I Press f9 I don't see anything...

    Please, I want to return my windows 8...

    can someone help me?

    Hi @pavilion9512

    Thank you for your request! No worries for tyour not English, also long as understand us each other, that we are very well.

    I understand that a few days ago, you wanted to downgrade to Windows 7, but after doing if some drivers were not available.

    Now, you want to perform a recovery from the disk that you created but are unable to get the option to boot to the optical drive.

    Here is a link to HP Notebook PC - configuration of the Boot in the BIOS system order which will facilitate this process.

    Good luck!

  • Dreamweaver CC 2015.3 interactive images - Hotspots do drag and drop does not work

    Dear all,

    I use Dreamweaver CC 2015.3 and try to use the Image Map option. I'm not using it in Liveveiw so there must be another problem.

    I have inserted a picture and give MapId image2. After that, I tried to drag and drop all three circle, polygon, and rectangle. Nothing happened.

    No map tag is packed. Nothing happens. What is the reason?

    Thank you

    Amir

    mamirs wrote:

    ... I have inserted a picture and give MapId image2.

    As much I know "MapId" is not an attribute of html for creating / using the clickable images.

    An image map using an attribute called 'well' in the tag which must match the attribute "name" of the tag. DW will write the attribute well, and tags automatically when you draw a shape, there is no need to add your own before drawing a card form (maybe it's and the use of an invalid attribute is confusing the program?). If you want to change the name of , make you in the properties of the window after you have created a form and DW will automatically update the necessary elements.

    To use the image map tools...

    1. place an image into your page (the tag should be used, image maps do not work on css-background images)
    2 single-left-click on the image in Design view to select it (a black box appears). If you see a blue border and a tab, when you click the image, you again Live View Editor and click on the triangle next to the Code, Split and buttons direct to change design

    3 left - click the shape you want in the Properties window to select the tool

    4. go to the image, click and drag (to a circle or square) or click on several points (for the polygon tool) to create your interactive image tag
    5. change the name of the card on the card Properties window

  • Select does not work

    Hello.

    I was testing a select statement before to create a view but it did not work. I need of Select name from three companies et restrict a city. I can Select the 3 companies, but when I restrict the city no error, but select returns me the same companies but in the throughout the State. If I select a company and a city, everything is fine,


    My selection is as follows.


    Select municipio, empresas entidade

    where entidade like '% EMPRESA01% ' or entidade like '% EMPRESA02% ' or like 'EMPRESA03% ' and municipio entidade = "Cidade01."

    Thank you.

    Hello Sandro,

    did you try to use parentheses?

    SELECT municipio,
           entidade
      FROM empresas
    WHERE (   entidade LIKE '%EMPRESA01%'
            OR entidade LIKE '%EMPRESA02%'
            OR entidade LIKE 'EMPRESA03%'  )
       AND municipio = 'Cidade01'
    

    And maybe a few functions high around municipio?

    concerning
    Kay

  • How do I adapt bridge CC2015 settings, so it does not work with my new MacBook Pro (10.11.1) at 500% CPU?

    Bridge CC2015 to run my new MacBook Pro (10.11.1) extremely hot. Fans are crazy and there are 500 + % CPU use.

    Is there something I can adjust back to normal levels? I can't use it otherwise, it's going to melt my computer. Any suggestions?

    Hello!

    I disagree, Photoshop was running the CPU very high, constantly above 100% (but not as bad as the bridge, which was greater than 500%) - especially when using healing and cloning brushes in quick succession, not to mention tool of transformation, which was even worse. The only way I could use it would normally operate in low resolution. I do a lot of pro work of retouching in Photoshop, so it is very demand a lot of work.

    With PS 15.0.1 put a few days previously, it seems to work normally, however! Except the transformation tool, who infiltrates the fan works, but not as bad as before.

    A strange thing happened, Bridge seems to work ok now. Don't know what happened. I am connected to an external monitor, but I don't see how it would matter. Maybe Photoshop upgrade had something to do with it?

    I guess my problem is solved even if I have not changed anything.

    Thanks for your help!
    Manja

  • Dragging an image does not work. I can edit, and resize, but cannot move a frame.

    Hello... I just ran into a problem and goes a little crazy. I never had this problem before, but all of my InDesign frames (images, text, etc.) will not move with the selection tool. I can change the text, resizing, but I can not move the. IF I use the direct Selection tool, I can move the image by clicking on its central point, but my basic selection tool hates me. Help, please! I don't know I'm lame and clicked on something I wasn't supposed to... but I'm stuck now.

    Thanks Peter for try... nothing seemed to have worked. I finally got to the Adobe phone support team (CAT Team killed our conversation two times). I looked through a ton of steps I can't really, technically describe... but in general, I had to log out and log in with a user 'root' and then go to multiple system and user files illustrator and indesign, change their name and then several illustrator and indesign touched files... to change their permission to add my profile main user. Once I did it (it took about 20 minutes), everything worked again. I hope this help anyone who runs into a similar situation. Sorry I couldn't explain better.

    All the best... Charley (789).

  • Area of development under the menu "select" does not work

    CC trial on 32-bit machine with 4 GB of ram and 1 GB card graph.

    Have the photo on the screen. Select the update box, select Menu. Get the graphic treatment of circle and then nothing.

    Tried all the display modes and still nothing. Original photo with no overlay.

    Any ideas greatly appreciated.

    What version of windows are you using?

    Maybe your photo is quite important with respect to the pixel dimensions.

    Have you tried smaller photo?

    (smaller in size in pixels, as 1014 x 768)

  • Safari category selection does not

    Safari category selection does not work and in box does not. Selection needs several times and do not 'remembers' the choices you make. What do I do please I really want us Firefox

    Please give us more details.

    Try these general troubleshooting steps.

    1 search for safari?

    Safari > Preferences > Search > search engine

    Uncheck the "Include search engine Suggestions."

    2 empty Caches

    Safari > Preferences > advanced

    Tick the box "Show develop menu in menu bar."

    Develop menu will appear in the Safari menu bar.

    Click on develop and select 'Empty cache' in the menu dropdown.

    3. Delete Cookies and test them.

    Safari > Preferences > privacy > Cookies and other data from the website:

    Click on the button "Details".

    Delete all cookies except those from Apple, your internet service provider and the banks.

    4 disable Extensions and test them.

    Safari > Preferences > Extensions

    Select Disable all extensions and test them.

    Enable the Extensions one by one and test.

    To uninstall any extension, select it and click the "Uninstall" button

  • ReadyNas Ultra 2 Bootmenu selection does not

    Hello

    I was informed by my NAS (RNDU2220) that a new firmware is available which I have tried to install via the "Remote Installation" option of the WebGUI interface. At first things went well, Raidar said that an update is performed. After updating the device unbootable, when I press the power that only the blue activity Led turns on, no LED drive. I thought that something was wrong and that he has decided to perform the operation to reinstall OS. It is absolutely crucial that I have do not lose data wherever I didn't do a factory full reset, just reinstall the OS.

    Up to this so bad... I followed the guide as described here: http://kb.netgear.com/app/answers/detail/a_id/21100

    I managed to get the SIN to the State where all the LIGHTS are on, and now I'm supposed to scroll the boot menu options by pressing the Save on the front button. But when I press this button at all nothing happens, which means that no change in configuration of LED and all 4 LEDs stay lit no matter how much times I press the backup button or for how long I hold, or all 4 lights are extinguished after a simple click on the button Save and only the blue activity LED is turned on with the FAN running at high speed. Network is not activated at this stage so Raidar does not see my SIN no more.

    What I am doing wrong, how can I leave the NAS reinstall the OS without a factory reset when bootoptions selection does not work? Is there a way to Flash the OS on USB without the need to choose a startup option, and without losing the data on the disks?

    Any help is highly appreciated

    Mdgm thank you for your time and effort, unfortunately nothing worked and history has ended with me pay $60 for a software recover data. Who worked happily

  • gesture trackpad of three fingers to select text does not work on the sierra

    I have a MacBook Pro (13-inch, mid-2014 retina). After upgrade to sierra trackpad gesture to select text using three fingers does not work. Instead, I saw that now a press and hold your finger and drag to select the text, it's very painful and does not work perfectly as three fingers gesture.

    If by mistake the press with a single finger is lost text selection stop there and have to start over and it also causes mild pain if the selection is long.

    Please let me know if anyone knows how to get the text selection gesture three fingers in sierra.

    OK the solution is already here - https://support.apple.com/en-ae/HT204609

  • Click and drag does not work Magic Trackpad 2

    I have a new Magic Trackpad 2, paired to a Macbook Pro (mid-2014). It works for the most part very well, but I have a big problem. Dragging never works well. For example, if I want to move a folder in the Finder to a different location, I used for a click or select, then just drag it to the new location. Now it does not work or works so rarely that it is useless.

    I got the 1 trackpad, and I have no problem.

    Make sure that you are not too much pressure.

Maybe you are looking for

  • App Store says 2 updates to date but all set

    The App Store shows that numbers and pages are available, but theyhavebeenupdayed and yet, they still show as pending. What should I do?

  • Re: Windows xp crash on startup

    Hello Now try to start my laptop, it crashes while windows tries to load. I tried it start in safe mode, but it still crashing. Thank you for your time and help,

  • version of the e bike system in India

    Can someone answer me what is the version of system 4.4.4 kitkat in e bike dual sim in India.

  • HP laptop battery does not load

    Recently, I thought that my laptop died a GPU, but it wasn't the problem, I changed my battery sister and my entire battery and I used his and my laptop turned on miracle, but the power of the battery keep going down by 2, for example if the power of

  • Project Server - manage my alerts - email address

    Where can I change the address displayed in the Mode of delivery , manage my alerts section in Project Server? My e-mail address is correct in Active Directory, but still incorrect in this area that is not editable. I can't determine where the wrong