Lion: Weird behavior with two monitors.

Intermittently, though very often, when a window is open in the secondary monitor (without menu bar), I cannot select items within the window — files (finder), emails (mail) or songs (iTunes). I cannot clear the problem except by moving the window to the primary monitor or  to another desktop.Then, everything is fine. The this behavior is isolated to the secondary monitor. Putting applications on separate desktops seems to avoid the problem.
Here's the behavior in some detail. Clicking on the window header selects the window, but if I click inside it seems to deselect the window rather than select the item; the window appearance changes to the deselected appearance. Clicking on the header reselects the window; it can be moved, but it may not be possible to resize it and contents cannot be selected. Sometimes this happens in only part of the window. I can't select anything below half way down the window, or on the left side. In this mode, in list view, I can select an item in a list layout by clicking on the right side of the name entry line, but not on the icon. It is as if an invisible window is sitting in front. This is intermittent, soI am trying to figure out how precisely to reproduce it. It sometimes happens not while I am working but after ten minutes or so of non-use.
Any ideas?

I don't, since my code has to be generic (it's the same for both canvases, and many more).
And I can only get the name of a canvas from a block, not the name of a block from a canvas.
That's why the cursor-block was the best solution.

Similar Messages

  • Users with two monitors

    Hi:
    I have an application using either JInitiator 1.3.x or Sun Java Plug-In 1.4.2.x which works fine.
    But I have several users with two monitors and if the user move the application to the secondary monitor the menu didn't work (using JInitiator or Sun JPI).
    We are trying to move our iAS configuration to use only Sun JPI.
    Is any solution for that behavior of the application when I have two monitors.
    Abdel Miranda
    Panama.

    Has anyone tried to apply this patch to a middle-tier installation of just Forms and Reports Services, rather than a full Oracle AS installation? Do you know if this patch can be used in this way? The Readme is full of info about things like OID and Metadata Repositories which don't really apply to us.
    I'm also worried (and unclear) about what databases are supported by this patch - in one place it says the minimum db version for patch 10.1.2.2 is DB 10g, whereas elsewhere it talks about only needing DB 9.2.0.7. (Neither of which is good for us, we're still on 9.2.0.6.) But then, for an install of just Forms and Reports Services, maybe I won't need to apply the database part of the patch..?
    I'd be intererested if anyone else has patched a pure Forms and Reports install...
    James

  • Problem with two monitors while using Photoshop, windows move from 2nd screen to 1st screen.

    Problem with two monitors while using Photoshop, windows move from 2nd screen to 1st screen.
    I saved a new workspace and it did not help.
    No problem before I went to Maverick.

    I found the fix, go to System Preferences and open Mission Control and uncheck the box to keep monitors as they were (When switching to an application...........)

  • How can one use Mission Control with two monitors?  Please bring Spaces back

    How can one use Mission Control with two monitors.  With Spaces I could treat each space as a single desktop.
    SyBB

    I use two monitors at work and have no issue. I have my mail set to use Desktop 1 and iTunes set to the second monitor of Desktop 1. I have browsers set to Desktop 2 and Fusion and RDC set to Desktop 3.
    Two things that may help you. In System Preferences > Mission Control, disable the setting "Automatically rearrange spaces...". This screwed with assigning applications to certain spaces. And the other thing is don't use full screen on apps that support it. This just makes your second monitor superfluous.

  • Lion thinks I have two monitors connected

    I have a MacPro 2008 with the ATI Radeon HD 2600 XT.
    I have two monitors, a Phillips 27" and a Samsung 19"
    I set up the system with the two monitors connected to the graphics card and everything was fine.
    I have since disconnected the Samsung monitor completely from the graphics card. however Lion thinks it's still there/connected.
    It's a real pain because it persists on displaying on the phantom screen and no matter what I do through System Prefs/Display I cannot get Lion to forget the monitor. Even if I gather the windows and place them one behind the other. If I click detect displays it thinks there are two there.
    Looking through the forum/discussions, this appears to be a problem with Lion and not the graphics cards, as people have simpliar problems with different cards/systems and what they're outputting to.
    Anybody have any suggestions?
    Cheers

    I have tried that fix, and it does work.
    However if I every time I connect a second monitor to the graphic card the same thing happens and I don't want to have to reset preferences every time I choose have a second monitor running.
    I sometimes run the second graphic channel out to my 46" Sony TV for watching catch up TV services.
    Any other suggestions?
    Cheers

  • Mountin Lion has trouble with external monitors

    Not so much a question as a shout-out. Since going to Mountain Lion, my pretty new (February this year) MacBook has been having no end of trouble with external monitors. I use it a lot with the clamshell closed with two different external monitors of two different sizes, one at home, one at work. It sometimes thinks the one is the other, or if I unplug the monitor in sleep, when I later open the clamshell, the screen stays black and I have to force a reboot with the power button. Never had these problems with exactly the same set-up in Lion. Sometimes it also refuses to find a connected monitor or projector, I have to pull the dangle and put it in again.

    If memory serves, one of the 'flaws' with BM's hardware is that it will not convert on-the-fly.  So if your sequence doesn't match what the TV is accepting, you get black.
    For example, my TV will not accept 1080p, only 1080i, so working in a 1080p sequence would produce no image for me as the BM will only output exactly what's in the sequence, it can't convert my 1080p/24 sequence into 1080i/30 for output.
    Now I'd expect your TV would have no trouble accepting a 720p signal but, maybe the above data will lead you down a path of investigation.

  • TLF 2/2.1/3 Weird behavior with floating graphics?

    Hi guys,
    I'm working on a chat application running on RED5 / AS3 and I'm struggling to get my client "UI" working perfectly.
    My problem is related to the TL Framework, on every version available.
    Basicly, I want to display a picture ( for user messages ) and icons ( for notifications ) on the left side of my lines, like this :
    So, I'v been messing around with "float=start", "float=left" and such, but i'm always encountering weird behaviors whenever I scroll or resize my containerController. It's quite easy to reproduce with the following code :
    public class Main extends Sprite
              private var controller:ContainerController;
              public function Main():void
                        if (stage) init();
                        else addEventListener(Event.ADDED_TO_STAGE, init);
              private function init(e:Event = null):void
                        stage.scaleMode = StageScaleMode.NO_SCALE;
                        stage.align = StageAlign.TOP_LEFT;
                        removeEventListener(Event.ADDED_TO_STAGE, init);
                        var holder:Sprite = new Sprite();
                        addChild( holder );
                        var tFlow:TextFlow = new TextFlow();
                        for ( var i:int = 0; i < 50; i++ )
                             tFlow.addChild( createLine() );
                        controller = new ContainerController( holder, 400, stage.stageHeight  );
                        tFlow.flowComposer.addController( controller );
                        tFlow.flowComposer.updateAllControllers();
                        stage.addEventListener( Event.RESIZE, resizeController );
              private function resizeController( e:Event ):void
                        controller.setCompositionSize( 400, stage.stageHeight );
                        controller.textFlow.flowComposer.updateAllControllers();
              public function createLine( ):DivElement
                        var d:DivElement;
                        var p:ParagraphElement;
                        var im:InlineGraphicElement = new InlineGraphicElement();
                        im.source = new Bitmap( new BitmapData( 16, 16, true, 0x30FF0000 ) ); // 0x30 Alpha
                        im.float = "left";
                        d = new DivElement();
                        d.clearFloats = "both";
                        p = new ParagraphElement();
                        d.addChild( p );
                        p.addChild( im );
                        return d;
    Basicly, I'm stacking 50 transparent "floating" elements. It works fine most of time, but if I randomly resize my Flash Player Window, I can get the first "invisible" element to overlap the last "visible" :
    It seems to be happening right when the last "floating" element should disappear. Instead, it gets "over" the previous one. It happens upon container resize and scrolls. I'v encountered this issue on lastest 2, 2.1 and 3 TLF builds.
    Beside the visual "bug", it also screws up my container.getContentBounds().height calls - which can make scrolling "trembling", as the height gets reajusted.
    I'm running out of ideas about how to handle this. This bug appears whenever I use "floating" graphics and I can't think of any other way to display graphics on the left side of my chat-lines.
    Maybe someone ran into this very problem and figured out a way to make it work?
    Excuse my english, thanks in advance,
    Lionel.

    Thank you for your report. And I have found the root cause.
    In BaseCompose.as
    protected function composeFloat(elem:InlineGraphicElement, afterLine:Boolean):Boolean
    if (!floatFits && (_curParcel.fitAny || _curParcel.fitsInHeight(totalDepth, int(logicalFloatHeight))) && (!_curLine || _curLine.absoluteStart == floatPosition || afterLine))
                    floatFits = true;
    The condition of if is true, only when the weird behavior happens. We need to discuss about how to fix it.

  • How to synchronise with two monitors

    Dear NI,
                      I have an application, for that i want to show the two different screens with different mesurement values. i am using CRT and LCD screens. in CRT screens i am running main vi in this screens i have configuration, testsettings, trendmill,and operator name etc. are displayed, i need  the seperate screens for to show measurement values to another screen. how , is it possible to do this?  can able to two diferent exe with diferent monitors? and how to synchronise two monitors for my application.
    Balaji DP
    Application Engineer,
    Gantner Instruments.
    Labview 8.5 Version
    Regards,
    Balaji DP

    Hi Balaji,
    So if you have an extended desktop across two monitors then I would say you had two options.
    1. Within one VI you could simple design the front panel in such a way that it extends across both screens with the relevant information in the right screen.  The fact that there are two monitors present is transparent to the applications.
    2. With two VIs there is a property for front panels to choose which monitor they are displayed on.  This is available by wiring a VI reference to a property node and selecting front panel window >> monitor.  You then enter an id for the monitor you want it to be displayed on, this is a numeric e.g. your primary monitor will be zero. You can see the property node help page here. 
    I hope this is the information you are after.
    Regards,
    James Mc
    ========
    CLA and cRIO Fanatic
    wiresmithtech.com/blog

  • Folio 9470m notebook with two monitors

    Hi all,  I want to use my Folio 9740m notebook with 3 independent display (Built-in display and two external monitor HP L1750). I tried to connect direct to notebook and docking station but it's not working. Only two displays are working at same time. Is it possible to use with 3 display (Intel HD graphics 4000 can do that)? Thanks for your help. Greg

    I've not been able to get 3 indpendent monitors running either.  I suspect it may have to do with the high resolutions of thw two monitors.  Has anyone tried using lower resolution settings for three monitors (didn't work for me)? On another note, using the single displayport only allows for a "stretched" desktop environment.  In order to get two independent desktops we had to use one monitor on the displayport in the back of the docking station of the 9470m and use the 2nd monitor on the side displayport which is attached to the laptop itself. This allows you to run two indendent desktops on each of the two monitors without having to get that "Daisy chained" effect where your desktop is just stretched (i.e. when you maximize a window it stretches across both monitors).
    The Folio only supports Dual Displayport 1.2 technology which only allows the daisy chain monitors and doesn't support multiple independent desktops, thus your only option is to get one big wide desktop if you connect multiple monitors to a single displayport. I'd love to get a solution to allow me to use two monitors plus the built-in display!  Any ideas??

  • NativeBoot with two monitors

    Hi, 
    I have machine with windows 8.1 where i wanted to host development environment - Windows 2012 Server. I decided to try Hyper-V Client and everything seems to work fine.  When i boot to Windows 8.1, then connect via RDP to my developer machine with Windows
    2012 Server. But i found out, that there is nice feature which allows me to boot to Windows 2012 directly. I checked that and found a little performance boost using it. But like always nothing is so great as looks on paper and i got problem connecting two
    monitors. In RDP connection i can span to two monitors without problem, but using native boot just duplicate screen. In Device Manager -> Display Adapters i see only one monitor, and one display adapter (Microsoft Basic Display Adapter). 
    I haven't found any information about limitation of connected monitors using native boot. Is it possible?

    "Native Boot" means that you are not running in a VM, the VHD is booted just like a physical drive and the OS is running on the bare metal.
    I am guessing that you need to redetect the display adapter when booted this way or install a 3rd party driver.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.
    Disclaimer: Attempting change is of your own free will.

  • How Can I use 2 Macs and a PC with two monitors

    This is for my office at work.
    I currently am using dual monitors and sharing those between a G4 and a PC. I'm using a Belkin switch box for the two computers. I'm adding a Mac Pro. I'm thinking I might use the Mac Pro by itself at another workstation but I would like to use it at my current workstation along with my other machines.
    I'm getting a new 23" monitor with the Mac Pro. I want to use it as my main monitor, then use one of my other monitors as a second screen. Is it possible to use two monitors with 3 computers? I would have to use the new keyboard and mouse (both will be standard, not wireless) on both of the macs and use the PC keyboard and mouse.
    Thank You
    Jim

    I would use the new Mac Pro as the main workstation and attach your mouse, keyboard and your new monitor to it.
    Then use the Belkin Switch Box to connect 1 monitor to the G4 and PC.
    Download and configure 'Synergy' (http://synergy2.sourceforge.net/) on the new Mac Pro (as the primary) and the G4 and PC (as secondary) - This will allow you to deal with only one keyboard and mouse.
    I'm with Malcolm, I would download and install VMware Fusion. VM the PC w/ Converter (http://www.vmware.com/products/converter/) and only deal with the new Mac Pro and G4. With the new Mac Pro, you can fire up the PC VM with 2 cores and have it set to a secondary space. You will not notice the difference.

  • Weird behavior with Ctrl-Tab

    Dear members,
    (Forms 6i c/s)
    I have two tab canvases in one form. For each one, the first tab page is a master list, and the second one is a single-record detail block.
    I try to prevent the user from going to the second tab page if the list is empty, so I check the cursor-block in the When-Tab-Page-Changed trigger.
    It works fine when I use the mouse, but I get a different behavior with the Ctrl-Tab keys:
    In the first canvas, when WTPC trigger fires, the cursor-block is the list block, which is fine.
    But in the other canvas, the cursor-block is already the detail block as soon as the trigger fires.
    I don't understand where the difference comes from, and I don't really know where to search.
    Does anyone have a clue ?
    Thanks for your help.

    I don't, since my code has to be generic (it's the same for both canvases, and many more).
    And I can only get the name of a canvas from a block, not the name of a block from a canvas.
    That's why the cursor-block was the best solution.

  • M92p HELP!!! About to return 6 new M92p due to Problems with two monitors.

    Hope someone can help. Just unpacked last week six (6) brand new M92p with dual 24" monitors. Unfortunatelly the monitors are NOT from Lenovo since Lenovo does not sell color calibrated monitors.
    The problem we are having is that we have tried connecting the two monitors using different conbinations of the 3 or 4 available video connectors on the back of the machine.
    only ONE monitor works at 1920x1200, the other defaults to 640x480.
    All the machines have a video card with 2GB. The video card has a DVI and a VGA port. The motherboard has VGA and DisplayPort. We tried one cable to DVI on video card the other on VGAon video card. Then we tried One cable on video card another on motherboard.
    I also disable the motherboard video in BIOS; that did not work either.
    NOTHING works!!! I am about to repack all these equipment and send them back.
    If anyone has any solution to this issue, please let me know.
    Thanks!

    Possible driver issue. Have you run Windows Update and Lenovo System Update?
    Also, beware of the BIOS settings for multi-monitor: http://support.lenovo.com/en_NL/downloads/detail.page?DocID=HT062228

  • Firefox not remembering window size with two monitors

    I have a laptop with a monitor attached - both the laptop monitor and external monitor are used as separate desktops. I have Firefox set to open on the external monitor, but it does not remember the last window size: it always opens to the size of the laptop monitor. Firefox is the only program that exhibits this behavior. I have reset, uninstalled and re-installed, yet the same behavior continues. Before re-installing, I've made sure to delete any left over Mozilla/Firefox folders.

    As far as I can tell this problem was never fixed and it goes back years:
    [https://bugzilla.mozilla.org/show_bug.cgi?id=251024 Bug 251024 - On startup the main window is incorrectly sized according to the workspace of the primary monitor]
    Even more bugs about it here:
    https://www.google.com/#q=firefox+dual+monitor+size+site:bugzilla.mozilla.org

  • Screen sharing crashes remote machine with two monitors in 10.7.2

    Hello,
    Whenever i connect to my Mac Pro (running 10.7.2 now), the machine hangs completely if my two monitors are connected.  This happens both over the network using Back to my Mac and Slink, when on a local network from my macbook Pro and a friends older iBook. (both running Lion). It also happens from a VNC client (remoter vnc) from my ipad. If i disconnect my second monitor, it works fine in all cases.  Is anyone else experience a remote machine crash when trying to screen share?
    I can connect to the disks fine. it's just screen sharing
    I recently refromatted my machine and it was working fine before then -- but i imagine the problem stems from 10.7.2 since i both reformatted and upgraded.
    thanks
    dan

    If you want to insure that Apple actually knows this is an issue, you should your own bug report
      BugReporter
    <http://bugreporter.apple.com>
    Free ADC (Apple Developer Connection) account needed for BugReporter.
    Anyone can get a free account at:
    <http://developer.apple.com/programs/register/>

Maybe you are looking for

  • How do I remove a Blacole virus from my Mac?

    My MacKeeper picked up several JS/Blacole and JS/iFrame viruses on my Mac.  Any suggestions as to how I remove them?  I'm not sure how I got them but they show up every time I run the virus scan, even after quarantining them so I'm assuming I need to

  • MVC: Multiple Gridviews/Webgrids on a single screen

    Hi Gurus,  I am new to MVC and trying to learn development here. I want to add multiple webgrids on a single web page. for example I have a got an entity Order. I need to show three different lists of orders on the dashboard. Open, Submitted & Finali

  • External hard drive becomes "read only" and won't let Time Machine back up

    I have an external hard drive for back up, and it has been working fine until recently. There is a version of 10.6.6 loaded on it also. The back up will fail every few days. When I do some checking, the back up drive is "read only" but I am not able

  • Payment Terms in Invoice

    Hi Experts, 1) While entering invoice, Payments terms derived from PO. But it can be changeable. This shouldn't happen. is it the standard or any notes there?( Because in certain cases, once derived from the PO, this was deleted) 2) Baseline date wil

  • How to resolve illegal cross join error

    Can someone please tell me how can we avoid illegal cross join error in modeling? If someone has any reference document , please share it. I have 5 tables - Dim (A, B , C,E) and Fact( D). C is lookup table which is used to resolve the lookup code col