A mouse is a pointing device that functions by detecting two-dimensional motion relative to its supporting surface.
41
votes
12answers
21k views
Focus-follows-mouse (plus auto-raise) on Mac OS X
(I don't want to hear about how crazy I am to want that! :)
Focus-follows-mouse is also known as point-to-focus, pointer focus, and (in some implementations) sloppy focus. [Add other terms that will ...
35
votes
9answers
43k views
JavaScript: Check if mouse button down?
Is there a way to detect if a mouse button is currently down in JavaScript?
I know about the "mousedown" event, but that's not what I need. Some time AFTER the mouse button is pressed, I want to be ...
32
votes
4answers
28k views
Determine mouse position outside of events (using jQuery)?
I need to get a hold of the absolute mouse position / coordinates (X and Y) using (preferably) jQuery like in this tutorial but outside of any JavaScript event. Thank you.
31
votes
5answers
31k views
Controlling mouse with Python
How does one control the mouse cursor in Python, i.e. move it to certain position and click, under Windows?
29
votes
3answers
10k views
What does it mean to “Capture the mouse” in WPF?
On System.Windows.UIElement there is a CaptureMouse() and a paired ReleaseMouseCapture() method. In this WPF DragDrop sample they call CaptureMouse on MouseDown and release it on MouseUp. The ...
27
votes
29answers
42k views
What is the best keyboard/mouse for ergonomics or to prevent wrist pain? [closed]
I have had pain in my wrists in the past, and as someone who types all day, I was wondering what are some keyboards or mice that have helped for this sort of pain.
Update: Many answers have ...
26
votes
4answers
34k views
Change the mouse cursor on mouser over to anchor-like style
If I hover the mouse over a div the mouse cursor will be changed to the cursor like that in HTML anchor.
How can I do this? Do I need Javascript or it's possible with CSS only?
21
votes
5answers
20k views
jQuery Set Mouse Position (not cursor position)
I have a link that, when clicked, I would like it to move the position of the mouse to the right (or anywhere within the viewport, for that matter).
in code it would probably look similar to the ...
19
votes
6answers
5k views
How can I make Emacs mouse scrolling slower and smoother?
When I scroll in Emacs using mouse wheel, it scrolls 5 lines at a time, which, I think, is way too much - where do I set a new value?
Also, when I scroll in Emacs with a mouse (either wheel or ...
19
votes
4answers
11k views
How do I drag and drop a row in a JTable?
How do you setup a JTable to be able to drag a row to a different index in the table. For example if I have 5 rows and I want to drag the 4th row to the 2nd position?
18
votes
6answers
25k views
get mouse position
I would like to simulate a natural mouse movement in Java (going from here to there pixel by pixel). To do that I need to know the starting coordinates.
I've found the method event.getX() and ...
18
votes
4answers
19k views
Listen to JFrame resize events as the user drags their mouse?
When a user clicks on the corner of a JFrame to resize and drags the mouse around, the JFrame redraws based on the current position of the mouse as the user drags. How can you listen to these events?
...
17
votes
2answers
4k views
Simulating mouse input programmatically in OS X
Is it possible to simulate the actions of a mouse from a program in OS X? Specifically, the short version is that I'm trying to simulate a touchscreen using two webcams. So assuming I can get X,Y ...
17
votes
4answers
6k views
Wiggling the mouse
OK. This is a bit of a vanity app, but I had a situation today at work where I was in a training class and the machine was set to lock every 10 minutes. Well, if the trainers got excited about ...
16
votes
1answer
8k views
Disabling mouse acceleration in Mac OS X [closed]
First of all, here's the userland question: Disabling mouse acceleration in Mac OS X @ superuser
To summarize: I want to have linear mouse response on Mac OS X. That is, no acceleration; an ...
15
votes
14answers
3k views
Control multiple PCs with single Mouse and Keyboard
As a programmer I found it very hard to use my laptop and workstation with two different input devices, Can anyone suggest a good solution to use single mouse and keyboard to control my two machines
...
15
votes
6answers
7k views
Multiple mouse pointers?
Is there a way to accept input from more than one mouse separately? I'm interested in making a multi-user application and I thought it would be great if I could have 2 or more users holding wireless ...
14
votes
4answers
9k views
C# - Capturing the Mouse cursor image
BACKGROUND
I am writing a screen capture application
My code is based derived from this project: http://www.codeproject.com/KB/cs/DesktopCaptureWithMouse.aspx?display=Print
Note that the code ...
13
votes
6answers
16k views
How do you hide the mouse pointer under Linux/X11?
How do I hide the mouse pointer under X11? I would like to use the built in libraries in order to do this and not something like SDL (SDL_ShowCursor(0)) or glut (glutSetCursor(GLUT_CURSOR_NONE)). ...
13
votes
3answers
1k views
Which mouse button is the middle one?
I'm currently developing a program in Java where a certain event must be triggered only when the user clicks with both the left and the right click on a button.
Since it is a little unconventional, I ...
13
votes
6answers
3k views
Simulate Mouse Clicks on Python
I'm currently in the process of making my Nintendo Wiimote (Kinda sad actually) to work with my computer as a mouse. I've managed to make the nunchuk's stick control actually move the mouse up and ...
12
votes
2answers
15k views
Java Mouse Event Right Click
On my three button mouse MouseEvent.BUTTON2= Middle Click and MouseEvent.BUTTON3 = Right Click.
Is this the case on a two button mouse?
Thanks
12
votes
6answers
8k views
How can I detect when the mouse leaves the window?
I want to be able to detect when the mouse leaves the window so I can stop events from firing while the user's mouse is elsewhere.
Any ideas of how to do this?
12
votes
1answer
4k views
How does CommandManager.RequerySuggested work?
The MSDN only states that
Occurs when the CommandManager detects conditions that might change the ability of a command to execute.
However I can't seem to find any traces of how this works, what I ...
12
votes
3answers
2k views
Rearrange tabs with the mouse in gvim
Is there any way in gvim to rearrange tabs by dragging and dropping them with the mouse? This is behavior I love in Firefox and Chrome.
I know you can do :tabm n but that requires figuring out ...
12
votes
3answers
9k views
Parent Control Mouse Enter/Leave Events With Child Controls
I have a C# .NET 2.0 WinForms app. My app has a control that is a container for two child controls: a label, and some kind of edit control. You can think of it like this, where the outer box is the ...
12
votes
1answer
164 views
Why Are all Middle Clicks in Java Reported as Having the Alt Modifier?
Why do the MouseEvents in Java share modifiers between keys and mouse buttons?
Consider, the simple code below:
public static void main(String[] args) {
JFrame frame = new JFrame();
...
12
votes
2answers
10k views
Change mouse cursor into hand icon
In a UserControl I want to change the mouse cursor form the arrow to a hand icon. What I currently do is this:
this.Cursor = Cursors.Hand;
This is very nice, it gives me a mouse cursor looking like ...
12
votes
5answers
2k views
Sending keyboard events to another application in C# that does not handle Windows events
here is my situation: we are writing an application that must transform Microsoft Kinect coordinates into keyboard and mouse events.
When we need to take control of the mouse, everything works as we ...
12
votes
3answers
455 views
How to override maximum 32x32 mouse size in Windows like this program can
I'd like for my program to be able to override the maximum imposed mouse size of 32x32 much like the program in the picture attached does, the cursor pictured is 72x72. This is a capture from ProcMon ...
12
votes
6answers
2k views
Eye-tracking for code editing
Is there a decent eye tracking package to replace the mouse for code editing?
I want to free up the mouse, but keep using my keyboard for editing code.
Having done some research on it, I concluded ...
11
votes
4answers
17k views
How to get mouse position in jQuery without mouse-events?
I would like to get current mouse position but I don't want to use:
$(document).bind('mousemove',function(e){
$("#log").text("e.pageX: " + e.pageX + ", e.pageY: " + e.pageY);
});
because ...
11
votes
1answer
3k views
WPF Mouse busy icon
What's the best method in WPF for showing an Eggtimer/Busy mouse icon when opening a new window or retrieving records from a DB?
11
votes
2answers
1k views
Awesome CSS Effect
404 Page or 500 Page
Anyone have any idea how to do this sort of thing? The animation that moves with your mouse? Thanks for the correction, @Alin. Just a link to a tutorial would be nice.
EDIT: ...
11
votes
6answers
3k views
Multiple mice on OS X
I am developing an OS X application that is supposed to take input from two mice. I want to read the motion of each mouse independently. What would be the best way to do this?
If that is not ...
11
votes
1answer
4k views
How to detect shift key pressed state when on mouse move
I'm trying to show a zoomed in overlay on an image when mouse over and shift key pressed.
The problem is that user might have pressed the shift key before even the window has focus, so KeyDown ...
11
votes
2answers
14k views
Moving mouse cursor programmatically
To start out I found this code at http://swigartconsulting.blogs.com/tech_blender/2005/08/how_to_move_the.html:
public class Win32
{
[DllImport("User32.Dll")]
public static extern long ...
11
votes
4answers
573 views
WPF: mouse leave event doesn't trigger with mouse down
I'm having an issue with mouse enter / leave events. When mouse button is pressed and hold with cursor inside the control and then cursor is moved out of the control fast enough this events don't ...
10
votes
2answers
10k views
Cocoa: Getting the current mouse position on the screen
I need to get the mouse position on the screen on a Mac using Xcode. I have some code that supposedly does that but i always returns x and y as 0:
void queryPointer()
{
NSPoint mouseLoc;
...
10
votes
6answers
4k views
Controlling the mouse from Python in OS X
What would be the easiest way to move the mouse around (and possibly click) using python on OS X?
This is just for rapid prototyping, it doesn't have to be elegant.
Thanks!
10
votes
5answers
5k views
How do I set the position of the mouse in Java?
I'm doing some Swing GUI work with Java, and I think my question is fairly straightforward; How does one set the position of the mouse?
10
votes
5answers
11k views
How to get control under mouse cursor?
I have form with few buttons and I want to know what button is under cursor now.
P.S. Maybe it's duplicate, but I can't find answer to this question.
10
votes
4answers
7k views
Java : ignore single click on double click?
can anyone think of a good way to ignore the single click that comes with a double-click in Java ?
I'm looking to have different behaviors for each such that:
single-click paints crosshairs on the ...
9
votes
6answers
23k views
How can I detect a held down mouse button over a PictureBox?
I need to fire an event when the mouse is above a PictureBox with the mouse button already clicked and held down.
Problems:
The MouseDown and MouseEnter event handlers do not work together very ...
9
votes
3answers
2k views
Command-click doesn't open a new tab, but middle-click does
On my website, which is a one-page JS site using Sammy.js and jQuery, when I middle-click a link with a mouse, the link opens in a new tab. But when I command-click on a Mac, it doesn't. This happens ...
9
votes
4answers
3k views
How can I handle multiple mouse inputs in Java?
A friend of mine asked me to implement a blue and a red pointer to represent the inputs of two separate mice to expedite a mixing desk scenario for real time audio mixing. I'd love to, but as much as ...
9
votes
1answer
15k views
Getting MouseMoveEvents in Qt
In my program, I'd like to have mouseMoveEvent(QMouseEvent* event) called whenever the mouse moves (even when it's over another window).
Right now, in my mainwindow.cpp file, I have:
void ...
9
votes
4answers
1k views
Emacs, unicode, xterm mouse escape sequences, and wide terminals
Short version: When using emacs' xterm-mouse-mode, Somebody (emacs? bash? xterm?) intercepts xterm's control sequences and replaces them with \0. This is a pain on wide monitors because only the first ...
9
votes
2answers
6k views
Converting mouse position to world position OpenGL
Hey, I'm working on a map editor for my game, and I'm trying to convert the mouse position to a position in the game world, the view is set up using gluPerspective
8
votes
6answers
11k views
Move the mouse pointer to a specific position?
I'm building a HTML5 game and I am trying to put the mouse cursor over a certain control on a specific event so that moving in a specific direction always has the same result. Is this possible?
