Locked mouse interaction with desktop

Hello all,
The following issue has just started reoccuring for me. The fault state is what occurs if you left click and drag on the desktop - you get the shaded rectangle.
I can be happily using my Mac and all of a sudden the mouse will be locked in this 'rectangle' state. I cannot unlock it from this state. It has occured with two different USB mice and with my current BT Mighty mouse. The only way out of this is a restart.
This error also can occur when I am away from the machine. I come back and find the mouse stuck in the rectangle drawing mode.
I am going out of my mind with how to fix this? Has anyone got any ideas?
Thanks
Anthony
G4PB 12" 1.5   Mac OS X (10.4.8)  

So, the best intermediate solution I've found is to add a swath of MouseEvent listeners (CLICK, DOUBLE_CLICK, MOUSE_OVER, MOUSE_DOWN, MOUSE_UP) to the Sprite objects associated with my ContainerControllers.  These listeners just call event.preventDefault() and event.stopImmediatePropagation().
The end effect is what I desired -- no more user-initiated mouse-based selection of the text.
Still, this seems a bit awkward, especially if for some reason in the future I need mouse-based interaction with the host Sprites for reasons unrelated to the text flow.
Anyone know a more targeted or centralized solution out there?

Similar Messages

  • Allow service to interact with desktop

    Hi,
    DC OS - Windows Server 2008 R2 Std
    Client OS - Windows XP, Windows 7
    I have implemented Security policy through Network Policy Server and enabled Wired AutoConfig Services Automatically. While Enabling Wired AutoConfig Services, if i check mark on ' Allow service to interact with Desktop ' It works proper in some of Window7
    Laptop.
    But on internet it is giving me Warning that "Interactive services can display a user interface and receive user input. If you allow the service to interact with the desktop, any information that the service displays on the desktop will also be displayed
    on an interactive user's desktop. A malicious user could then take control of the service or attack it from the interactive desktop."
    Can you give me some example how Malicious User can take control of the service or attack it from the interactive desktop?
    Thanks & Regards,
    Param
    www.paramgupta.blogspot.com

    Hi,
    By default, services use a noninteractive window station and cannot interact with the user. However, an interactive service can display a user interface and receive user input. Once LocalSystem account (a services running in an elevated security context)
    creates a window on the interactive desktop, any other application that is running on the interactive desktop can interact with this window. That is, this exposes the service to any application that a logged-on user executes.
    Then it will be very dangerous.
    Andy Altmann
    TechNet Community Support

  • Mouse not interacting with panels.

    I have CS6 wich I just DL a few weeks ago for school, I use no plug-ins or other add on software. The problem is my mouse will not interact with the panels, (ie layers, swatches, and the such) in InDesign. So far Photoshop Illustrator, and Bridge all work just fine it is only ID that I am having issues with. On the panels I can get it to open the group but it has no interaction with the fine details, selecting layers, double click name to rename locking viewing and open layer options, create new layer button will also not work, I can use the options button at the top right of the panel for some things but it leaves me limited on what can be done. I can not even use my mouse to switch between layers. Any idea on what may be causeing this and what I can do to fix it. (yes my mouse works, it is charged and interacts with other software and games with no problem)

    Bob thanks so much for this. I had been using IdCS6 on Win7 without issues but recently got a new larger screen so had increased font size. BTW I did several searches on Adobe forum using various combinations of "indesign CS6 mouse will not work in layers panel" and did not manage to find your helpful reply.I eventually found it on about page 10 of Google search results! Have spent half a day on this search and found nothing so not a lot of info on this issue out there...I would not have found this information anywhere else. Glad I persisted! Again many thanks.

  • Automation engine is unable to playback the test because it is not able to interact with the desktop : Unsing VS2012 on Remote Desktop, Window not Minimized

    Hi
    I am running these tests using VS2012 on a remote desktop. The session is alive when I try to run it. The Window is not minimized.
    The tests run fine on my own machine. The VM has test agent and controller installed on it, but I am not using them right now to run the tests. Do you know what setting on my machine might casue this issue ?
    Stack trace:
    Test Outcome: Failed
    Test Duration: 0:00:00.6287248
    Result Message: Error calling Initialization method for test class <TestClassName> Microsoft.VisualStudio.TestTools.UITest.Extension.UITestException: Automation engine is unable to playback the test because it is not able to interact with the
    desktop.  This could happen if the computer running the test is locked or it’s remote session window is minimized.
    Result StackTrace: 
    at Microsoft.VisualStudio.TestTools.UITesting.UITestLogGenerator.ExceptionRecorder(Exception exception, Boolean rethrow)
       at Microsoft.VisualStudio.TestTools.UITesting.Playback.ThrowIfScreenLockedOrRemoteSessionMinimized()
       at Microsoft.VisualStudio.TestTools.UITesting.Playback.Initialize()
       at Microsoft.VisualStudio.TestTools.UITesting.CodedUITestExtensionExecution.BeforeTestInitialize(Object sender, BeforeTestInitializeEventArgs e)
       at Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestExecution.RaiseBeforeTestInitialize(BeforeTestInitializeEventArgs args)
       at Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestExecuter.RunInitializeMethod()

    Hello,
    Thank you for your post.
    “The VM has test agent and controller installed on it, but I am not using them right now to run the tests.”
    In this case, how do you run the Coded UI test on the VM? You start the Coded UI test from your own machine and then open the remote desktop session to make the test run on VM?
    If yes, I am afraid that you can’t do like that. You need to use the test controller and the agent in order to run the test on the remote desktop. Or you create the app and do coded UI test against it on the VM completely.
    If I have misunderstood anything, please feel free to let me know.
    Best regards,
    Amanda Zhu [MSFT]
    MSDN Community Support | Feedback to us
    Develop and promote your apps in Windows Store
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Can you INTERACT with script without mouse on click?

    Hi everyone,
    I got this script
    has a dropdown list inside
    I can run it in win 7 and interact with by keyboard without mouse
    but why I can't do same thing in the MAC?
    var
      mySelected = Number( app.extractLabel("mDialog") ),
      myDialog = app.dialogs.add({name:"Indesign Close and Save File Machine",canCancel:true});
      with(myDialog){
           with(dialogColumns.add()){
                with(dialogRows.add()){
                     var
                     mySelection = dropdowns.add({stringList:["01   Close and SAVED", "02   Close WITHOUT save", "03   Save all files", "04   Reverse", "05   Remove unused color"], selectedIndex: 0});
    if (myDialog.show() == true) {  
        var docs = app.documents;  
        main();  
        myDialog.destroy();  
    function main(){
          colse_file();
    function colse_file(){
        if (mySelection.selectedIndex == 0){
            var docs = app.documents;
                 for (var i = docs.length-1; i >= 0; i--) {
                         docs[i].close(SaveOptions.YES);
          alert("Files are saved.") 
          return;
        if (mySelection.selectedIndex == 1){
            var docs = app.documents;
            for (var i = docs.length-1; i >= 0; i--) {
                  docs[i].close(SaveOptions.NO);
          alert("Files are closed without save.") 
          return;
       if (mySelection.selectedIndex == 2){
            var docs = app.documents;
                 for (var i = docs.length-1; i >= 0; i--) {
                         docs[i].save();
          alert("Files are saved.") 
          return;
       if (mySelection.selectedIndex == 3){
          var docs = app.documents;
                 app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;
                 app.documents.everyItem().revert();
                 app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
          alert("All files are reversed.") 
          return;
       if (mySelection.selectedIndex == 4){
          var doc = app.documents, i, j; 
               for(i =0;i<doc.length;i++) 
                      unused = doc[i].unusedSwatches; 
                         for(j=0;j<unused.length;j++) 
                          unused[j].remove(); 
            alert("All the unused swatches in your opening files are removed.") 
          return;
    thanks
    Teetan

    The only way to purchase from the iTunes Store is via iTunes, on a computer or iOS device, and it will automatically download your purchase immediately. You have a couple of options: you can go ahead and purchase on another computer that has iTunes and then just copy the purchases to your Vista system (via any normal means of file transfer), or if you're in the US, the new iTunes in the Cloud feature, currently in beta and so not completely reliable, would allow you to download the purchases again at some future time when you get your iTunes problems sorted out. I'd recommend the first option as the best solution for now (and the only solution if you're not in the US).
    Regards.

  • Interactive Analysis Desktop in use with PostgreSQL DB and ODBC

    Hello, is it possible to use the Interactive Analysis Desktop with commercial databases? Specifically, PostgreSQL? But it would also be helpful to use with MySQL and MS SQL.
    If so, would it be possible to connect using ODBC or DSN? Please let me know.

    You need to use bind variables.
    Define a PHP variable for master key. Parse the following anonymous PL/SQL block:
    begin
      get_unique_master_key('DEMO','CMPL','SK','DWMT_TABLE', ? );
    end;Bind the PHP master key to the bind variable. Execute.
    Bind variables are input and/or output variables. In this case, you want to use it as an output variable in order to receive the master key value from the PL/SQL call.

  • Does Mighty Mouse only work with desktop Macs??

    I just bought an Apple Wireless Mighty Mouse, assuming it'd work with my new Leopard OS X Macbook. I followed the instructions on the Mighty Mouse booklet...but no installation start-up window ever appeared. I'm a beginner with Apple, so I figure I've done something wrong....does the Mighty Mouse only work with desktop Macs and not MacBooks?
    Please help if you can.

    Ah! sorry, my mistake! "wireless" was the key word. And yes, prior to my new mighty mouse, I also used the wireless one. And you need to do the following:
    1) Turn bluetooth ON (either from finder icon (you can have it placed on your finder bar by tick box in sytem preferences/bluetooth.
    2) Then, you need to "pair" your mouse via bluetooth setup assistant.
    3) once "paired" off you go.

  • Why do I have to Alt+Tab after startup to interact with my desktop?

    after I restart my machine, I always have to Alt+Tab to interact with all of my shortcuts on desktop and taskbar. I have run both avast antivirus and superantispyware programs, and both said there are no bugs... ???? whats going on????

    How does Firefox enter that problem?

  • Cannot click or interact with a certain part of my screen in most apps

    This is a weird one that's stumping me. Since probably Tuesday or Wednesday, I've had trouble clicking on certain portions of the screen on my MacBook. I noticed it first in Safari, and I thought that it was just a Safari problem, but now I realize it applies to the whole OS.
    When I am in an app, I cannot click on anything or scroll when my mouse is on a certain portion of the screen. The weirdest part to me is that this portion of the screen is standard for every app. It's probably about the middle 50 or 60 percent of my screen in the lower third portion. Imagine cutting my MacBook screen into a Tic-Tac-Toe board... the lower middle box is where I'm having trouble.
    This seems to apply to most apps, but for example in iTunes I can still click on items in this portion of the screen but only about every third click will it be responsive. With Safari and Finder and most other apps, I get nothing at all. It's not my mouse itself because it does the same thing if I'm using my Mighty Mouse or my Logitech mouse or just my trackpad. Also, if I navigate using the keyboard, I can interact with that portion of the screen just fine.
    I can't recall installing or removing or changing anything significant within the past week that could have caused this, though it's entirely possible. I'm pretty good with my Mac on most things, but as I said, this one is stumping me and I can't find any similar issues by searching.
    Thanks in advance for any help.

    Got the exact same problem aswell, finally fed up with it now as i just started up firefox and 14 new windows opened because of this bug, luckily my computer can handle them but someone with a slower processor it would have been a nightmare, needs fixing ASAP.
    Reverting back to 3.6.3 until this issue is solved. (link for anyone wanting to do the same below)
    http://www.filehippo.com/download_firefox/7345/

  • How do I create an app to interact with my Web ? like skype or msn ?

    I need to create a downloadable interface like Skype or Msn which will interact with my website that is created on PHP and MySQL...
    What will be the best practices for this ? thanks in advance...

    You might take a look at Adobe's AIR platform which can use HTML, JavaScript, and Flash to develop applications that work on the desktop like a regular app but can also connect/interact with a web service. But that question is more in line with the Dreamweaver Application Development forum.

  • FW CS6 on Mac: how can I lock the docks with the canvas?

    I like the way all of my docs migrate from screen to screen all together when I use Dreamweaver and I seem to recall Fireworks CS5 on a PC behaved the same way. I use a MacBook Pro with an extra display at home and at work and would really like all of my panels, tool, and properties palettes to remain attached to the canvas—unless I undock a set of functions.
    Here's what I found in the Help section:
    Note: Dreamweaver does not support docking and undocking Document windows. Use the Document window’s Minimize button to create floating windows (Windows), or choose Window > Tile Vertically to create side-by-side Document windows. Search “Tile Vertically” in Dreamweaver Help for more information on this topic. The workflow is slightly different for Macintosh users.
    But... where IS that info for Macs?
    Anyone else have a workaround?
    Thanks!

    Yeah, I think part of what you're noticing is the difference in UI between Adobe applications on Mac versus Windows. Macs have traditionally had the floating window approach, which allows for visualization and interaction with elements beneath—like the Desktop or other applications—whereas Windows have a more integrated, full-screen UI. I haven't used a Windows OS in a while, but I remember how jarring it was having first learned Dreamweaver on Windows, and then using that same app on the Mac.
    I believe the Application Frame feature may have been developed to address that difference. Here's the excerpt from "Workspace basics" describing the feature:
    The Application frame groups all the workspace elements in a single, integrated window that lets you treat the application as a single unit. When you move or resize the Application frame or any of its elements, all the elements within it respond to each other so none overlap. Panels don’t disappear when you switch applications or when you accidentally click out of the application. If you work with two or more applications, you can position each application side by side on the screen or on multiple monitors.
    If you are using a Mac and prefer the traditional, free-form user interface, you can turn off the Application frame. In Adobe Illustrator®, for example, select Window > Application Frame to toggle it on or off. (In Flash, the Application frame is on permanently for Mac, and Dreamweaver for Mac does not use an Application frame.)
    So is this solution working for you? I cannot think of any other way to dock all the panels and windows as a single unit.

  • Can i use flash for ui and interact with c++ builder for the rest

    i know flash can be used in c# in visual studio but i dont remember a thing of this interaction.
    is it possible to interact with c++ builder and how?
    the scenario is simple
    use flash for UI (showing-viewing data) maybe for a kiosk or something without mouse simply with touch input,
    use c++ builder for the rest , database connection data proccessing etc
    any info will be greatly appreciated
    thanks

    I would advise proper punctuation and grammar on a public forum, but to answer your questions, yes, yes you can! Flash can be used to produce any commercial imagery or animations for the purpose of making profit, as long as you have a valid license you purchased from Adobe. You bought it, you can use it for whatever you want.
    By "book", I assume you mean the "tutorial" book series made by Adobe? If so, the name of the series is "Classroom in a Book", there's one for each versions of Flash. Personally it hasn't been of much use and I would advise simply practicing by yourself and getting familiar with the tools. Look for online tutorials and publicly available projects and see how they work.

  • Unable to interact with Flash content when running Firefox with restricted user

    When running Firefox with limited Windows user on Windows XP the Flash elements are displayed, the content that is set to auto-play does so even, but the flash area doesn't receive any mouse input: e.g. when I right click in the area instead of the flash context menu I get the browser context menu as if the flash plug-in wasn't even there. The exact same page on the exact same computer but with Administrator user works as expected: can press buttons, interact with flash controls and the context menu upon right-click is of course the flash one. This behavior occurs even if I disable all add-ons.

    Try uninstalling your sound card driver in Device Manager and reboot your PC.

  • Converting WordPerfect to PDF with desktop printer tool: Not working

    I have been a monthly subscriber to Adobe CreatePDF for many years! I work mainly with Correl WordPerfect, but with the change to the Pack version it is not supported. I downloaded the desktop printer tool; it is installed. However, when I follow instructions and print, I get nothing. Where does the PDF go? What can I do? Please help! I cannot continue to pay monthly if I don't get service.

    Thank you very much. I have uninstall adobe desktop printer tool and my wordperfect. Next step is follow your suggestions but I am no computer anything, lol. 1. How do I know if I have a win 7 sp1? I have win 7 that much I know. 2. Where can download the hotfix? 3. With adobe createpdf, I didn't need adobe ps printer setup, I don't have a laser printer at home, I have an hp inkjet printer.
    Please help again and soon, :).
    Date: Tue, 7 Jan 2014 11:52:08 -0800
    From: [email protected]
    To: [email protected]
    Subject: Converting WordPerfect to PDF with desktop printer tool: Not working
        Re: Converting WordPerfect to PDF with desktop printer tool: Not working
        created by H.Spector in Adobe PDF Pack (formerly CreatePDF) - View the full discussion
    Please do following
    (A). If your system is Win 7 SP1 then install a hot fix to correct inetpp.dll version at C:\Windows\System32 folder.After installing the hot fix version will be 6.1.7601.21819 from 6.1.7601.17514.
    Note please uninstall CreatePDF Desktop printer then reinstall after applying the hot fix
    (B). If you have not installed Adobe Postscript driver yet then please install one as below:
    How to Install PS printer:
    1. Open Start menu > Devices and Printer ( or from control panel) and select "Add a printer"
    2. Select "Add a local printer"
    3. Select "Use an existing port: LPT1: (Printer port)
    4. Select any company and any PS printer with Adobe PS printer driver(not clone) such as Xerox and Xerox Phaser 6120PS
    Adobe PS driver files:
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5989811-532123/450-202/PagesfromHowToInstall_PS_PrinterDriver_onWin7.jpg
    (C) Go to the printer configure port and verify your Adobe ID and password
    1. Goto Start> Devices and Printers > Adobe CreatePDF Desktop Printer
    2. Click right mouse to open “Printer properties”.
    3. Select “Ports” tab
    4. Select ”Internet Port: Adobe CreatePDF Desktop printer”
    5. Click “Configure Port…” button at the bottom
      http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5989811-532115/410-417/IPP_Scr eenshot.png
    When printing to PDF you will see below and an email is delivered to your email inbox.  The converted PDF file will be stored at https//files.acrobat.com.
      http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5989811-532116/395-199/IPP_Scr eenshot_Queue.png
    Thank you
    Hisami
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5989811#5989811
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5989811#5989811
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5989811#5989811. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Adobe PDF Pack (formerly CreatePDF) at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Can't interact with any open windows, can't interact with flash content

    I've already tried reinstalling, resetting and deleting my profile, nothing's changed.
    I can't close any Firefox window by pressing "x", or by pressing Alt+F4, I can only close it through the task manager or task bar. Minimising or going into windowed mode is also impossible.
    If a new window opens itself (e.g. A download) I can't interact with it at all - It's visible on top of the main window, but nothing I do affects it.
    I also can't interact with flash content (like pausing a youtube video)
    There is absolutely no feedback when I try. The icon doesn't change.
    I recently reset firefox, there are no add-ons, themes etc. installed, the problem persists.
    I am running Windows 7 64bit, everything else (including other browsers) appears to be working fine and a virus scan (Avast! free version) turned up nothing.
    I'd really appreciate any help!

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

Maybe you are looking for

  • Preserving HTML links when converting Word docs

    I created a document in MS Word for Mac 2011 (ver 14.5.2) When I used Adobe Pro 11 to convert the document into pdf format, all the HTML links are lost.  I have tried converting from MS Word, opening the word version with Adobe Pro, printing from MS

  • AE with java

    Our shop has a lot of apps written in java and ruby, and I'm trying to integrate with these apps to perform standard operations without rewriting a ton of code. One problem I have with java is that stdout or console does not show up from our PS envir

  • Smartform to pdf conversion Doubt

    Dear Expert i'm refering the below code to convert smartform to pdf in module pool program i have created two pushbuttons one for preview and one for edit, if users edit the values it will store in ztable and then they want to preview that changes in

  • Java 8 Update 40 On Mac Os Safai

     Hello community! i have had WD My cloud since it came out and one of my favorite things was to be able to access it from the browser but now with th new java 8 update 40 its not letting me see the shares and i have added the exeptions in java but ha

  • CS6 Master Collection menu fonts break

    This past year when installing the CS6 Master Collection either manually or with an installation job, the fonts for the drop-down menus for AI, Dreamweaver, and Photoshop come up jibberish.  It also affects non Adobe programs as well.  The drop down