Questions related to the mouse pointer or cursor.

learn more… | top users | synonyms

1
vote
0answers
28 views

Capture and save screenshot as you click - Windows C#

First up, sorry for the long question but I want to make sure I include everything that I have come across and done so far. I want to make a C# Windows Application for the tutorials team that will ...
-2
votes
6answers
92 views

How to change cursor

I have started to explore jQuery and have a question regarding how things look. I have an image that when clicked toggles the navigation bar. When I hover over the image I have the text-select cursor. ...
0
votes
0answers
72 views

mouse pointer speed android programmatically

I am asked to handle mouse pointer speed. I have Googled a lot and didn't find anything. I only found the sourcecode of mouse pointer speed via input manager. Is there any way to increase/decrease ...
1
vote
0answers
76 views

Change mousepointer during drag

How can I change the mousepointer/cursor during drag in PyQt4 (I want one mouse pointer in the left side of my widget and another pointer in the right part): from PyQt4 import QtGui, QtCore class ...
8
votes
2answers
565 views

Hide Mouse Pointer on Android

I'm writing a game for OUYA and Android and I'm using the trackpad on the OUYA controller. When ever you touch it a mouse pointer comes up and I can't find a way to hide it. I image this would be a ...
0
votes
0answers
78 views

Flash as 2 mousepointer

I have a flash project I'm currently stuck on. I have a movieclip, with 2 containing movieclips(top menu and bottombar). and im trying to do a custom pointer to just be visible at the main movieclip ...
-1
votes
1answer
851 views

How to change mouse pointer to hour glass on button click in web application?

How to change the mouse pointer to hour glass on button click and back to pointer after loading data in an asp.net web application?
2
votes
2answers
1k views

Should Application.UseWaitCursor be used?

Are there any dangers in using Application.UseWaitCursor to turn off and on the hourglass mouse pointer?
0
votes
2answers
531 views

Mouse cursor disappears when textbox at ToolStripDropDown editing

I have a user control with RichTextBox and two buttons on it. I'm trying to show that at ToolStripDropDown on ToolStripButton click. I'm using ToolStripControlHost to put my control at ...
1
vote
3answers
1k views

Scrollbar in JScrollPane does not work on JTables

I have a JScrollPane with number of huge JTables in it. While i'm scrolling down the JScrollPane by mouse scroll, it just stops when the mouse pointer passes a JTable. (i.e. Scrollbar works only ...
1
vote
2answers
785 views

How to get the name of a control under the mouse pointer ( without making an event handler for each control ) ?

I have an mdichild, and an eventhandler for draganddrop so when I drop an image file in my form, a picturebox ( name = dpic ) is created with that image. I have another eventhandler which is for ...
1
vote
0answers
416 views

Incorrect hotspot for I-Beam cursor in Windows 7?

The Problem On windows, the coordinates returned for a "mouse button down" event seem to be slightly wrong for an I-Beam cursor. Basically, the x-coordinate is always two pixels left of where it ...
0
votes
2answers
2k views

lock mouse cursor movement only in a control

I have a picture box which I draw some stuff on it using a bitmap (loading the bitmap as picturebox image after each change of drawing). Now I have a "Add a note" button. this button is somewhere in ...
1
vote
1answer
213 views

Where can I get the CUR files for the Firefox cursor values?

I'm using some of Firefox's specially-defined values for cursor, in particular -moz-zoom-in -moz-zoom-out -moz-grab -moz-grabbing In order to display these on other browsers, I'd like to deploy the ...
2
votes
1answer
1k views

Silverlight: Is it possible to use custom mouse cursors/pointers?

I have just found this page indicating the support for Silverlight mouse cursors: http://msdn.microsoft.com/en-us/library/system.windows.input.cursor(VS.95).aspx Is that it!!! :-| what are they ...
14
votes
6answers
14k views

Hide cursor in Chrome (and IE)

I have the following CSS that hides the mouse cursor for anything on the web page. It works perfectly in FireFox but in IE and and Chrome it doesn't work. html { cursor: none; } In ...
0
votes
1answer
680 views

Programatically change cursor speed in windows

Since getting a satisfactory answer on SuperUser is very difficult, I want to rephrase this question and ask: Is there any way to programatically detect a mouse was plugged in the usb port, and ...
27
votes
9answers
18k views

Getting the browser cursor from “wait” to “auto” without the user moving the mouse

I use this jQuery code to set the mouse pointer to its busy state (hourglass) during an Ajax call... $('body').css('cursor', 'wait'); and this corresponding code to set it back to normal... ...