Color depth of the mouse cursor

Upgraded to srss 4.2 yesterday and discovered the addition of Xrender support. After enabling it the mouse cursor switches to an animated one. This looks really horrendous, since the mousecursor is displayed in black and white (1bit color depth). Does anyone know how to increase the color depth of the mouse cursor? The screen is configured with a color depth of 24 bits

Gnome 2.16.0 on RedHat 5.3 with Metacity as windowmanager. The mouse displays just fine, but is was real bw non animated before Xrender. Now it is animated and the animation is converted to 2 bit, including dithering for shadows. Regard this as an esthetical bug. A resolution would be to search for a 2 bit mouse theme (or create one)
xdpyinfo
dimensions: 1680x1050 pixels (474x296 millimeters)
resolution: 90x90 dots per inch
depths (7): 24, 1, 4, 8, 15, 16, 32
root window id: 0x47
depth of root window: 24 planes
number of colormaps: minimum 1, maximum 1
default colormap: 0x20
default number of colormap cells: 256
preallocated pixels: black 0, white 16777215
options: backing-store YES, save-unders YES
largest cursor: 64x64
current input event mask: 0xfa2033
KeyPressMask KeyReleaseMask EnterWindowMask
LeaveWindowMask ButtonMotionMask StructureNotifyMask
SubstructureNotifyMask SubstructureRedirectMask FocusChangeMask
PropertyChangeMask ColormapChangeMask
number of visuals: 8
default visual id: 0x23
visual:
visual id: 0x23
class: TrueColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff, 0xff00, 0xff0000
significant bits in color specification: 8 bits
visual:
visual id: 0x24
class: TrueColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff, 0xff00, 0xff0000
significant bits in color specification: 8 bits
visual:
visual id: 0x25
class: TrueColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff, 0xff00, 0xff0000
significant bits in color specification: 8 bits
visual:
visual id: 0x26
class: TrueColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff, 0xff00, 0xff0000
significant bits in color specification: 8 bits
visual:
visual id: 0x27
class: DirectColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff, 0xff00, 0xff0000
significant bits in color specification: 8 bits
visual:
visual id: 0x28
class: DirectColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff, 0xff00, 0xff0000
significant bits in color specification: 8 bits
visual:
visual id: 0x29
class: DirectColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff, 0xff00, 0xff0000
significant bits in color specification: 8 bits
visual:
visual id: 0x2a
class: DirectColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff, 0xff00, 0xff0000
significant bits in color specification: 8 bits

Similar Messages

  • On startup Mac Pro I get a blue screen and a cursor on the upper left. The mouse cursor shows up independently. Is it likely a video card failure?

    On startup Mac Pro I get a blue screen and a cursor on the upper left. The mouse cursor shows up independently. Is it likely a video card failure?

    I managed to boot the computer and get the desktop to show. I now have a "repaired" computer. There are several problems that have cropped up. One is that I can only start up now in Safe Boot mode. Is there a way to turn it off? Also, I do not have a sound list, so I can't access anything requiring audio. Google Chrome only shows up as a white screen. Pictures that loaded before don't load in browsers, etc. Any suggestions? I figure I should reinstall Mac OS Lion for starts, maybe even do a mirror backup and reformat the drive. I think this drive has turned into scrambled eggs...what a headache!

  • How to change the mouse cursor icon type when mouse moves out of client area ( propertysheet) WTL?

    I got stuck with an issue in property sheet .I want to load different cursor when the mouse position is within the client area and load another when moves out of the client area.
    In the porpetysheet I added four page. In the first page when I click next I am loading cursor of IDC_WAIT type and loading IDC_ARROW when the mouse moves out of the client area.
    In the page class I triggered the event for WM_MOUSEMOVE as follow:
        MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove)
    LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    if(TRUE == m_bIsNextBtnClicked)
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    else
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    This event is getting triggered and absolutely had no issue with this. Similarly I tried adding `MESSAGE_HANDLER(WM_MOUSELEAVE, OnMouseLeave)` this event making an assumption that this will get triggered if the mouse moves out of the client area,  but
    this event did not get triggered at all.If this is not the mouse event to be triggered for mouseleave which event should I trigger?
    LRESULT OnMouseLeave(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    Now when I click Next button , **I was actually calling a function which is taking sometime to return** . Before to this function I am loading IDC_WAIT cursor i.e., 
     `::SetCursor(LoadCursor(NULL, IDC_WAIT));` . 
    Now when move the mouse cursor on to the non-client area I want to load IDC_ARROW cursor i.e., 
        ::SetCursor(LoadCursor(NULL, IDC_ARROW)); 
    When the moves on to the non-client area I am handling the mouse event in sheet derived class as follows,
    MESSAGE_HANDLER(WM_NCMOUSEMOVE, OnNCMouseMove)
    LRESULT OnNCMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return 0;
    This event is not getting triggered until unless the function in the Next button event is executed.
    I want both of them to be done in parallel i.e, click Next button now hover mouse on the client area, Busy icon should come and when mouse moves out of the client area then IDC_ARROW icon should come.
    LRESULT OnWizardNext()
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    m_bIsNextBtnIsClicked = TRUE;
    BOOL bRet = MyFun();
    m_bIsNextBtnIsClicked = FALSE;
    //Until this function(MyFun()) is executed **WM_NCMOUSEMOVE**
    //event is not getting triggered.But this event should get triggered and I
    //should be able to see the change of cursor within and out of client area.
    Can anyone kindly help me to solve this issue.
    SivaV

    Hello
    sivavuyyuru,
    For this issue, I am trying to involve someone to help look into, it might take some time and as soon as we get any result, we will tell you.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Get rid of the mouse cursor when on desktop touch devices

    Hi there,
    I'm using sap.ui.commons controls to build my application. However, this application will sometimes be used on touch devices like large touch screen HDTV connected to a desktop Windows PC.
    When clicking on a button, the button gets focussed. However, as clicking on a control moves the mouse cursor, too, the button gets a mouse over look and feel and the focus style applied.
    Is there a way to disable the mouse over events and style sheets for desktop controls in an easy way? I want to get a similar behaviour like using an application on a device without a pointer (like a tablet or smartphone). No mouse over, no focus.
    Regards
    Tobias

    Hey Tobias,
    have a look at this Thread: javascript - Disable hover effects on mobile browsers - Stack Overflow
    It helped me and might contain a solution to your problem as well!
    Regards,
    Timo

  • Getting the name of the window under the mouse cursor

    Hello All
    Is there a way to receive a window name of the window under the mouse cursor? All windows in interest are LV windows, and all of them works separatelly. After the mouse click I would like to get the window name.
    The reaso nfor asking is that I have a sequence of setting of different windows. I need to create a doccumentation and I need all windows front panels send to MS Word.
    I thought that my application can read the window names and by using the LVwutil32 get the front pannels of the windows and send them to MS Word.
    Problem is that in the library I do not have a function like "Window on Top.vi" or something like that.
    Anyways, the problem for me now is how to get an active (most top) window
    name?
    thanks
    Pawel

    Hi Pawel,
    I found the following VI in my "trunk" that I made a while ago (written in LV6.0.2). It returns the active VI (and thereby) the Window name. Mayby you have some use of it, but I believe this is what you want. Only works for Windows though.
    Regards,
    Mattias Ericsson
    Endevo, Sweden
    Attachments:
    WindowsUtil_GetActiveVIWindowName.vi ‏54 KB

  • Why does the mouse cursor move to away from the currrent application without the mouse being moved

    the mouse cursor moves away from the current application without the mouse having been moved - this started with the new version - re-installing Firefox makes the problem go away for a short period - re-installing is not a solution
    == This happened ==
    Every time Firefox opened
    == a few days after installing 3.6.3

    Hello Jim.
    It's probably one of three things:
    #your mouse is getting old (this behavior is common in old optical mouses);
    #you have software that is making your mouse cursor behave unexpectedly (I know of an option in Windows that will automatically move your mouse to windows buttons...);
    #or you may be having a problem with some extension or plugin that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?

  • How to change the mouse cursor

    Hi,
    I need to change the mouse cursor on a mouseover event of a text filed?
    Please help for the same...
    Thanks,
    Abhijit

    I guess your are simply out of luck.....share with us if you find a way.

  • Making the mouse cursor invisible.

    I am currently in the deployment phase of software made for two touchscreen kiosks.
    When moving the applications over to these kiosks I realized that we needed to make the mouse cursor invisible.
    I have tried the
    Cursor cursor = new Cursor();// ALthough i was unable to find a cursor constant that gave me an invisible pointer.
    testFrame.setCursor(cursor);
    Any ideas how I could remove the pointer from view alltogether?

    Toolkit tk = Toolkit.getDefaultToolkit();
    Image image = tk.getImage("yourPicture.gif");
    Cursor invisibleCursor = tk.createCustomCursor(image, new Point(0,0), "invisible cursor");I usually use a 1 x 1 transparent gif.

  • Bookmark shortcut is not working if the mouse cursor is focussed in flash plugin.

    I was trying to open bookmark panel using shortcut keys [ctrl+shift+B] when the mouse cursor is focused with flash plugin. But it fails to open. But i clicked the page and tries it again it opens the bookmark panel.
    Try with the following link
    [Eg: https://learnable.com/courses/a-crash-course-in-mobile-web-design-195]
    This may or may not be a issue.
    Its just a suggestion..

    You're welcome
    See also:
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=330412 bug 330412] - There should be a key defined to get the focus out of the plugin
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=93149 bug 93149] - No way to move focus between plugin and browser from keyboard

  • I want to turn my macbook air off. the shut down button already appeared but the mouse/cursor just hang and won't work. even after pressing the enter button to shut my mac off won't work. what will i do?

    i want to turn my macbook air off. the shut down button already appeared but the mouse/cursor just hang and won't work. even after pressing the enter button to shut my mac off won't work. what will i do?

    This is not a reply. I just want to elaborate on this problem.
    My computer freezes occasionally when it is used after being sleep for a while. The spinning ball appears and everything is totally disabled. Nothing on the keyboard works.
    The mouse moves, but does not work.
    The only solution is to turn the power off and on (losing all data in open applications.)
    I kept the System monitor running on the side to find out which program was running when the computer froze. The Monitor as well as all other applications froze, but the data showed:
    Firefox 18.4%
    Activity Monitor 0.9%
    Firefox Plugin 0.2%
    This is all the information I have. By the way, I am using iMac with OS 10.6.

  • Could anyone tell me how too change the mouse cursor to the waiting mode?

    Could please anyone tell me how too change the mouse cursor to the waiting mode while my applet is processing?
    Well i have 3 combos in my applet.....and in my actionPerformed code i have:
    public void actionPerformed(ActionEvent e) {
    if (e.getSource() == combo1) {
              setCursor (Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    ind_reg = combo1.getSelectedIndex();
    Do_Accion1();
    setCursor (Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    if (e.getSource() == combo2) {
    setCursor (Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    ind_mun = combo2.getSelectedIndex();
    Do_Accion2();
    setCursor (Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    if (e.getSource() == combo3) {
    setCursor (Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    ind_loc = combo3.getSelectedIndex();
    Do_Accion3();
    setCursor (Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    } // Fin action event
    But my cursor is never change to WAIT_CURSOR....Somebody could help me please?....
    Thanks in advance....
    Mary

    YourComponent.setCursor(
         Cursor.getPredefinedCursor(
         Cursor.WAIT_CURSOR));

  • Has anybody had a problem with the mouse cursor lagging when navigating the drop down menus? this only started happening after a re-install. it only occurs in Photoshop elements 13 in the  photo editing section,and no other application. My mouse drivers a

    Has anybody had a problem with the mouse cursor lagging when navigating the drop down menus? this only started happening after a re-install. it only occurs in Photoshop elements 13 in the  photo editing section,and no other application. My mouse drivers are up to date.Any help or advice would be most welcome.

    Good day!
    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements
    and please read this (in particular the section titled "Supply pertinent information for quicker answers"):
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    Regards,
    Pfaffenbichler

  • In facebook, When I access a picture directly, I am unable to advance the photo forwards or backwards using the mouse/cursor or the arrow keys.

    I am using Firefox 16.0.1 on a macbook pro using 10.7.5 software.
    When I access a picture directly, I am unable to advance the photo forwards or backwards using the mouse/cursor or the arrow keys. The same is true if I use an external mouse.
    If I use Safari as the browser, I don't have this issue.
    This problem just started a couple of days ago.
    All had been working fine.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • [SOLVED] How do I autohide the mouse cursor in xorg?

    My Google Fu isn't working for me today.  I've found references to autohiding the mouse cursor in xorg, but no examples.  Anyone know the right incantation for xorg.conf?
    Last edited by eerok (2008-02-14 18:42:11)

    From the man page:
    unclutter removes the cursor image from the screen so that it does not obstruct the area you are looking at
    That's my reason, anyway.
    I mostly use the keyboard, so often the mouse cursor is just an eyesore. I can move it out of the way, but why not hide it altogether?

  • My mini loses the mouse cursor when it goes to sleep

    Since I upgraded to OS X 10.7, my MAC mini loses the mouse curson when it goes to sleep. I am able to use the mouse to "awaken" the system and get the home screen, but the system will not display the mouse cursor. The only thing thast will recover the mouse cursor is to reboot the syste,.

    going to sleep means disabling the network connection to save power
    so what you're asking is not really possible
    unless you can change what going to sleep mean on your computer
    in the power saving settings you may be able to set going to sleep to just turn off your monitor
    because thats pretty much the only thing that can go to sleep if you still wish to use it over wifi

Maybe you are looking for

  • Can't access some websites using time capsule

    Everything has been working just fine with my time capsule and my imac and just today I couldn't access some websites for some reason. I tried many other sites including this one and can get to them no problem. I have been through all of the airport

  • How to unzip the xlWebApp.war

    Experts, I need to do some customization(like message on home message and some error messages) in OIM. For the xlWebApp.war needs to be unzipped. How to do this? I am doing this with flowing option 1. Make the extension as .zip and then extracting. 2

  • Export all chapters to wmv

    When I try to export an m4v video with multiple chapters, quicktime 7 pro only exports the first chapter. How do I export the entire movie with all chapters to wmv ? Thanks in Advance ~D

  • Redirect to 3 diffrent pages based on value in the Auto complete field.

    Hi Friends, I am using an "Auto complete field" in a page for searching(Apex version 4.0). But i need to get values from 3 tables and when clicking on the value redirect to any of the 3 pages based on the value. For example i am having 3 tables. 1.Cu

  • Performance degradation with COGNOS and BW

    Hello, Do you know how to increase performance when using Cognos to request in BW ? Cognos seems to need a lot of RAM. Thanks for your help Catherine Bellec