X11 Window Focus Problem Driving Me Crazy

Hello,
For no reason that I can figure, I'm having difficulty in OS X with the window focus. In the gimp, or inkscape or any other X11 program, when I click on a button, after about a second, the focus of the window is temporally lost. I've uploaded a video to show the problem more exactly:
http://www.screencast.com/users/grey1618/folders/Jing/media/d826455a-9657-4409-b 085-a8a1b3c5ca19
If you watch the close, minimize and plus button on the top of each window after I click each tool you'll see what I mean.
Any help would be really, really appreciated.
Thank you,
-Grey

Best you post to the Unix forum under OS X Technologies where the Unix, Terminal, and X11 mavens congregate.

Similar Messages

  • Significant Computer Window Focus Problem With Verizon Access Manager 7.7.1.0 (2707e)

    With the newly released Verizon Access Manager 7.7.1.0 (2707e) there is a significant computer focus problem with it.
    What I mean by this is that if I am using ANY application on my computer with the Verizon Access Manager minimized to the Windows System Tray, something will go on with the Verizon Access Manager and it steals the window focus - I am unable to work in the other application unless I click on the application to use it again.  
    An example of this would be my typing to post a message in this forum.  Something occurs in the Verizon Access Manager and my typing is rendered useless unless I click with my mouse on the browser window to be able to use it again.
    I'm highly suspecting whenever networks are coming and going in the Access Manager is when the problem occurs.
     This problem did not exist in the previous version of the Access Manager I was using.
    This is extremely annoying - please issue a fix for this ASAP!

    I have found by not minimzing the Verizon Access Manager 7.7.1.0 (2707e) the focus problem does not occur - it appears to be a problem when the app is minimzed to the system tray.

  • ACR to Photoshop CS5 window focus problem.

    Running Photoshop CS5 on Win7, both 64 bit. No problems for months, then recently this minor "annoyance" appeared.
    I "host" ACR via Bridge, with the windows for all three apps maximized. I double-click a raw file in Bridge and ACR opens. I make my ACR adjustments, or not, and click "Open Image" to pass to Photoshop.
    The images passes into Photoshop OK, but the Photoshop window does not receive "focus". Instead, the ACR window closes, leaving the underlying Bridge window displayed. But then no window has focus.
    When I click once on the Photoshop tab, I get a screen flicker, like a window is being minimized, but the Bridge window remains displayed. I click again on the Photoshop tab and it comes up, full screen with focus.
    If I take the ACR window out of "maximized" mode, the problem does not occur. Raw images pass from Bridge through ACR to Photoshop with proper window focus. Opening tif, psd, or jpeg images via Bridge is no problem. Only when raw images pass through a maximized ACR window does Photoshop fail to receive focus.
    A few days ago I used the Windows 7 "snap" feature to place the Photoshop window and ACR window side-by-side. This is done by dragging a window off-screen until it turns blue and then releasing. I believe this action caused the problem I'm having now. I've unsnapped, resnapped, and unsnapped the Photoshop and ACR windows several times, hoping to clear the problem, but it remains.
    Keeping the ACR window out of maximized mode is an easy work around, but the mystery remains and I hate mysteries.

    I know how you feel, I've had a few problems like this with CS5. I can only think of two suggestions:
    1. Disable Windows 7's fancy desktop (Aero peek, or whatever it's called) to see if that helps.
    2. Make sure you're sorting by filename in Bridge. I have noticed that sorting by metadata causes Bridge to sometimes steal focus when it's not wanted. I love Bridge, but christ it needs a good sorting out.

  • Socialize HD Problems Driving Me Crazy!

    Hello,
    Thank you very much for your time. I received my Socialize HD Camera and installed it. All seemed to be going well, and at this very moment in time, only video works. I cannot seem to make the sound work, which is driving me crazy. The microphone is built in with the camera.
    Having read about 20 of these threads now, I can safely confirm:
    I have installed latest drivers
    I have plugged the webcam in
    I have restarted and installed the software for the fourth time now
    Also, the Live! Central software does not work, and my firewall is not blocking this as I have checked all logs, so what can I do? This is sort of urgent, but thank you very much!
    Vincent

    I just got a Live! Cam Socialize HD and have a problem with static noise from the mic. I have it running straight into the USB on my Mac PPC w/ OS 10.5.8. There is static on Skype and when I record videos from the webcam. Any help?

  • Transformation problems driving me crazy

    This is driving me crazy! If I create a process with a start node that
    receives an typed XML document (schema has compiled OK in the utilities
    project) then if I try to use a transformation to bind a String element from
    the expected send XML to a String variable, then I just get the following
    message in a red box:
    ERROR: cannot find a suitable Constraint for this join link.
    Any clues as to what I'm doing wrong gratefully received.
    I'm using WLI 9.2.
    Cheers,
    SB

    I can get around this by manually modifying the .xq file that is created
    (but not populated with my query) to include
    the xquery mapping that I want, and it works fine. I still can't fathom out
    why the xquery transformation utility comes
    up with the error below.
    SB
    "Stanley Beamish" <[email protected]> wrote in message
    news:[email protected]..
    This is driving me crazy! If I create a process with a start node that
    receives an typed XML document (schema has compiled OK in the utilities
    project) then if I try to use a transformation to bind a String element from
    the expected send XML to a String variable, then I just get the following
    message in a red box:
    ERROR: cannot find a suitable Constraint for this join link.
    Any clues as to what I'm doing wrong gratefully received.
    I'm using WLI 9.2.
    Cheers,
    SB

  • IPhone - Safari parent window focus problem

    Hi All,
    I am having a peculiar problem with a website i am developing. The problem *only* happens on the iPhone(safari).
    My setup is as follows.
    1) I have a CLIENT page - shows an initial page, and has a login button.
    2) User clicks on the LOGIN button, and is shown a LOGIN popup/new-window  (this is created by posting a form using jquery 'submit' function with target='_blank')
    ====
    CLIENT.html
    var formData = '<form style="display: none; margin: 0; padding: 0; border-width: 0; overflow: hidden;" id="MyFormId" action="https://MYSERVER.COM/v2/widgets" method="POST" target="_blank"><input type="hidden" name="action" value="connect"/><input type="hidden" name="referringURL" value="http://MYCLIENT.com/ClientPage.html"/><input type="hidden" name="cartOwnerId" value="A2R6QUFKT17A1O"/></form>';
    CBA.jQuery("#"+this.getLocation()).append(formData);
    jQuery("#"+formIdName).submit();                                                                                                                                
    ====
    3) User enters credentials on LOGIN window, and submits. A call is made to the SERVER to authenticate. On SUCCESSFUL authentication, we want to
       * CLOSE the LOGIN window
       * REDIRECT Client page to new URL
    4) Everything works as planned, EXCEPT that the Client window (that created the LOGIN popup/new window), does not return to full-screen (after the LOGIN window closed).
    If i try to put a window.opener.focus() in the LOGIN page javascript, i get focus on the CLIENT page, but the LOGIN page does not close(even if i put window.close before the window.opener.focus())
    ====
    LOGIN html
    jQuery(document).ready(function() {
            var messageToOpener = true;
            var fullMessage = PURCHASE_CONTRACT_ID_PREFIX + "${viewer.purchaseContractId}";
            CBA.Checkout.sendMsg( messageToOpener, fullMessage, '<c:out value="${viewer.merchantUrl}"/>');
            window.close();
            window.opener.focus()
    ====
    Is there any tips on how i can close the LOGIN window, and redirect the client page to a new URL, and make the Client window full screen?
    Any tips would be appreciated.
    Thanks

    I have made  a static script that I try and use to do something similar - it works everywhere else just not on the iphone..
    <script>
    (function(){
    do something to make 'tok'..the following post message sends the original script 'tok' it just isnt working only on iphone
    window.opener.postMessage(tok,"http://gamerdj.net.gridhosted.co.uk/");
    alert('wois '+window.opener);
    self.close();
    </script>
    I use the above after authenticating with google and getting a token back in this case tok and this needs passing back to the original app. I would prefer not to launch a new window and have this mess but becasue the google API wont accept a proper route url for angular I cant get that to work. This way was the closest that I got.

  • KDE Window Focus Problem

    In KDE, when I'm focused on a window in foreground and I click on the contents of a window in the background the focus of the window changes, but the window that was in the foreground does not go behind the window that I just clicked on.
    http://img404.imageshack.us/img404/2745 … cusli7.png
    In that picture, I was focused on the Pidgin window and I clicked on this text box of Firefox and the Pidgin window in the foreground.
    The only way to place that window in the background is to click the title bar on top of Firefox, then it behaves normally.  By the way, I'm running KDE3.
    Any help would be appreciated, thanks.
    Last edited by darkNiGHTS (2008-03-26 02:19:46)

    It's been quite some time since I've used KDE, but isn't there some kind of "raise on focus" setting that would raise newly focused windows? I'm certain this setting exists for focus-follows-mouse but I don't remember if it applies to click-to-focus.
    j

  • Safari Beta 4 child window focus problem

    It seems that Safari/Windows Beta 4 does not properly focus a child window. In my case, I'm using Javascript to directly intercept keystrokes. If a new page is opened in the same window, the keyboard works just fine. If it's opened in a child window, the keyboard is ignored until the window is manually focused (mouse click). This behaviour is unique to Safari on Windows. On the Mac, it's fine. On all other browsers and operating systems, it's fine.
    You can see an example at http://sentientdata.com/focustest/kbug_demo.html .

    Sounds like it might be a question of the Developer forum? Or a some other forum on web design? This is a user-to-user tech support forum.
    Best of luck.

  • Safari Firebug problem - Driving me crazy

    Several weeks ago I installed the Firebug Lite extension for Safari (Mavericks edition) and after removing the extension I still get the Firebug "half-page" is the best thing I can think of to call it. from the webpage I used it for. I have removed everything, even reinstalled the OS completely, as well as the recent upgrade to Mavericks, yet it is still there.
    I have tried to delete every cache file associated with Safari and still it remains. Anyone have any ideas on what is wrong and how to fix it? Thank you in advance for any help you can provide.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.

  • Airport Linksys WRT54GX4 WPA TKIP problem-Driving me Crazy!

    HELP! Anyone, My Boss bought a new Linksys Router WRT54GX4 and I cannot connect to it through my ibook. The old one(old router) was damaged and I was able to connect to it fine before it was broken. But the new one uses the WPA TKIP encryption, and my ibook cannot connect to it, it sees the network name and gives me severl WEP coices to connect to but no go. the Actual Network is the WPA TKIP, but I have tried severl different combination to connect to it and still nothing. I have tried the passphrase in uppercase and lowercase and nada. But most other PC's have no problem connecting except for my ibook. It sees other hotspots and connects fine. Any Help would be appreciated. Thanks!
    I have a 12" iBook 800 Dual USB 32 MB Vram, 640 RAM and Orig Airport Card.

    The linksys wrt54gx4 is not quite the same series as the earlier wrt54g routers. The new wrt54gx uses different firmware altogether. This router uses a new technology and employs 3 antenna's where as the earlier wrt54g's had 2 antennas.
    It may be that this new technology is not working so well with apple airport cards as I have found the new linksys routers that have 3 antennas to be buggy. I have returned one to a reseller already.
    In the wireless security settings of the wrt54gx4 it is possible to have wpa selected but not enabled.
    I am not sure if the older airport cards support wpa2. I do know that the latest version airport does support wpa2. But for now try enabling wpa and disabling wpa2 on the linksys box as per this screen shot.
    I will be switching to buffalo wifi routers as these new linksys boxes are
    a) buggy
    b) don't support linux

  • Google Custom Search problem driving me crazy

    I love using FireFox, but recently it has started acting up when I right click on some text in a web page and then "search Google". Before this problem started, the search page would be a standard Google search page with the different headings across the top images, videos, news, shopping, etc. Now I get a Google search page where the Google logo at the top is made with FireFoxes (search google images for "firefox google" and you will see what I mean). Also, I no longer have the different items at the top so the search page is basically useless.
    I have started using IE again, but I would really like to get this sorted out. This does not happen with IE, I uninstalled Firefox, cleaned the registry and reinstalled - at first everything was OK but after a couple of hours it went right back to it
    == This happened ==
    Not sure how often
    == about a month ago

    This is caused by a virus or malware that you have accessed. The solution is simple.
    Step 1) Goto "about:config"
    Step 2) Search for "keyword"
    Step 3) Right click on "keyword.URL" and select reset
    Your searches will now be the normal Google results

  • Window focus bug

    A while ago (since two or three updates) I started having window focus problems.
    When I uese expose to switch to a window, the application does not focus, and the window stays covered by some other window (usually the application that pops back up is Mail, Safari, or Finder).
    This is an extremely annoying bug, does anybody now how to fix it?
    I don't know if this can help, but I've upgraded my system from 10.3, all the way to 10.4.5 using the several updates. I use an external mouse, but I get the bug using the trackpad as well.
    Also, I don't know if the two problems are related, but I get very odd bugs in ICal with the mouse (clicking on an event changes the scroll status on the events pane and I end up selecting a random task with that same click...)
    Thanks,
    JS
    Powerbook G4 12   Mac OS X (10.4.5)   System upgraded from 10.3
    Powerbook G4 12   Mac OS X (10.4.5)   System upgraded from 10.3

    Create a new account, name it "test" and see how Expose and iCal work in that User acct? (That will tell if your problem is systemwide or limited to your User acct.) This account is just for test, do nothing further with it.
    Open System Preferences >> Accounts >> "+" make it an admin account.
    Let us know and we'll troubleshoot this further.

  • My i tunes won't open. i keep getting error7 (windows error 193) . contacted microsoft(thought it was a windows thing...not) have uninstalled itunes and everything related to it ,re installed and message still comes up. Help please,driving me crazy.

    help. my iTunes wont open. I keep getting the message error7 (windows error 193). contacted Microsoft they said contact iTunes support. I have uninstalled all iTunes componets and then reinstalled everything but message still comes up... its driving me crazy.

    If it's a Windows error, it's typically going to be a Microsoft problem. Uninstall any security software you have and if you have a restore point for your PC, you may want to restore your PC back to when iTunes was working normally. If none of those work you would need to contact Microsoft and demand help.

  • Problem with new firefox tabs and window focus

    Here's a problem that I've had for ages - sometimes it annoys me, other times I can live with it. Right now it's really p***ing me off.  :x
    I have selected 'a new tab in the most recent window' under FF's Preferences->Tabs->Open links from other applications in:, so as an example, if I click on a URL in a mail in Thunderbird, Firefox opens it in a new tab. However, window focus stays on Thunderbird. I run both of them full screen, so although I'm looking at the web page in Firefox, anything I do on the keyboards affects Thunderbird. It affects URLs opened from other apps too e.g. if I open a terminal and do
    firefox www.archlinux.org
    focus stays on the terminal window. The only exception is when firefox is not already running - in that case, firefox launches with focus.
    DE is xfce4, and the system is completely up to date.
    I've done some googling, and AFAICS, nobody else seems to have this problem. Any ideas, anyone?
    TIA.

    Thanks MAC!EK - definitely a useful add-on, but it still doesn't solve my problem. In Tab Mix Plus Options, I have the following selected:
    Links -> Open links from other applications in: New tab
    Events-> Tab Focus -> Focus/Select tabs  that open from: <all>
    However, the behaviour is as before i.e. I click a URL in Thunderbird, it opens in a new tab in Firefox, but window focus stays on Thunderbird. Within Firefox, the newly-opened tab is selected or focussed, but Firefox itself is not.
    Anyway, thanks again. I think I need to keep looking.

  • I've added to ios6 to my new ipod touch with no problems. I'm trying to now restore the factory settings but the screen is frozen with an itunes sign and lead pointing towards it. The ipod won't even switch off. Can anyone help as it's driving me crazy

    I've added ios6 to my new ipod but tried then to restore the factory settings. It won't extract any settings and the itunes then tells me that the server cannot be reached or is unavailable. I've been trying all day. Now the ipod has a itunes sign and a computer lead pointing towards it on the screen and this is frozen. It won't switch off or do anything else. Any ideas as this is now driving me crazy.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

Maybe you are looking for

  • How can I hide the password and user name in url???

    Hi experts, I'm creating a login page and know I have a problem. The Username and password are verified in a Java class, after checking the user and password, the user should be linked to the portal. So far everything has worked well. But when I call

  • Download, different checksum each time. 11.1.0.6 db for linux install fails

    Hi From the Oracle d/l site I have downloaded the same 11.1.0.6 db file 3 times and got 3 different cksum values. 1844527800 May 15 14:25 linux_11gR1_database_1013.zip cksum linux_11gR1_database_1013.zip 1640646659 1844527800 linux_11gR1_database_101

  • Photoshop and Mac Mini

    Good Afternoon To All... Will my Mini run Photoshop without any problems? My machine is a 2.26GHz, with 8GB memory, also, it's got a 120GB SSD. Thanks in advance for everyone's time.

  • Try before you buy?

    I'm not currently an ATT customer. The ATT website shows good coverage in my area. However, I want to be sure I'll get reception at home and work. Is it possible to purchase an iPhone and ATT plan, try it for a few days and fully refund everything if

  • Getting Error - Dimension has multiple leaf levels which are not identical

    Hi All, While creating two hierarchies with in same dimension , i am getting error like - Dimension has multiple leaf levels which are not identical. Does this error mean , the number of levels in both hierarchies should be same or it has some thing