Tagged Questions
A mouse is a pointing device that functions by detecting two-dimensional motion relative to its supporting surface.
42
votes
17answers
7k views
How do you get by without a Mouse? [closed]
I've been slowly using my mouse less and less over the past few years. As a developer who prefers the command line over IDE bloat: the less I move from my keyboard, the more productive I tend to be. ...
42
votes
58answers
16k views
Mouse for programmer [closed]
We have discussed keyboards. But take a look at the small piece of plastic to the right (or left :) ) of your beloved keyboard! This humble creature helps you to draw nice forms, and click all around ...
23
votes
11answers
12k 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 ...
19
votes
29answers
20k 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 ...
17
votes
3answers
5k 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 ...
16
votes
8answers
24k 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 ...
15
votes
6answers
6k 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 ...
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
...
14
votes
6answers
5k views
Wiggling the mouse using C#
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 ...
12
votes
6answers
12k views
Controlling mouse with Python
How to control mouse in Python, i.e. move it to certain position and click.
Thank you,
Sasha
11
votes
5answers
437 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 ...
11
votes
4answers
5k 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?
...
11
votes
3answers
13k views
Mouse position using jQuery outside of events
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.
11
votes
4answers
5k 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?
10
votes
2answers
304 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: ...
9
votes
7answers
2k 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 ...
9
votes
6answers
3k views
Emacs mouse scrolling
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 ...
8
votes
3answers
118 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 ...
8
votes
3answers
1k 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 ...
8
votes
4answers
2k 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?
8
votes
2answers
913 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 ...
8
votes
5answers
869 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 ...
8
votes
3answers
6k 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 ...
8
votes
2answers
6k 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 ...
8
votes
2answers
5k 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 ...
8
votes
1answer
2k 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 ...
8
votes
4answers
2k 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 ...
7
votes
1answer
223 views
getting mouse location without a listener
In some situations I need to place a JFrame right where the mouse cursor is located. Do I really need a mouse listener to track mouse move events, or I can just read current mouse position somehow?
7
votes
1answer
479 views
Need an input control program in python
I want to create a program that catches mouse clicks, no matter in which application it is sent to. Then it has to simulate twenty mouse clicks in one second. I am quite new to Python, and I am not ...
7
votes
2answers
341 views
What is the Linux/X11 (and Mac OS X) equivalent to Win API SetCapture() function?
On Windows you can "capture" the mouse to continue receiving mouse events even when it goes outside the window's client area. Here the SetCapture() documentation: ...
7
votes
5answers
2k views
Fade in on mouse movement (like on google.com)
How do I fade in div content on first mouse movement, like on google.com, using javascript? I don't want it to fade out again.
7
votes
1answer
2k 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?
7
votes
3answers
966 views
Assign Mouse Buttons in Visual Studio 2008
Does anyone know how to bind extra mouse buttons to commands in visual studio 2008? There used to be a "powertoy" that let you do it for visual studio 2003, but I can't find an equivalent for 2008.
7
votes
7answers
4k views
How do I get rid of the mouse cursor in full-screen exclusive mode?
I'm working on a simple 2D game engine in Java, and having no trouble with FSEM, buffer strategies, and so on; my issue is with the mouse cursor. In windowed mode, I can hide the mouse cursor, no ...
7
votes
6answers
15k 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 ...
6
votes
3answers
343 views
Handling Camera-Style Mouse Movement in Javascript (enabling continuous mouse movement)
The idea: I'm creating a simple WebGL script (using mrdoob's wonderful three.js) that allows the user to control a camera in a world of objects. The camera is supposed to simulate traditional first ...
6
votes
1answer
255 views
How can you detect a mouse-click event on an Image object in Java?
Implementing "Kings' Corners" (glorified multiplayer Solitaire) in Java.
I'm trying to allow a player to drag a card (image) from their hand to somewhere else on the table. The problem is that the ...
6
votes
1answer
307 views
Did user use keyboard or mouse to leave WPF TextBox?
I have a handler for the TextBox's PreviewLostKeyboardFocus event. It fires when I leave the TextBox using the keyboard (Tab key) or the mouse (by clicking on another TextBox on the form).
The ...
6
votes
1answer
560 views
Mouse cursor position in C on multi screen system
how can I set the mouse cursor in an X window in C under Linux with multi screens? I have 2 monitors (with different resolution) plugged to a single linux pc.
I used ":0.1" to address the second ...
6
votes
4answers
657 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 ...
6
votes
2answers
2k 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
6
votes
5answers
3k views
Disabling mouse movement and clicks altogether in c#
At work, i'm a trainer. I'm setting up lessons to teach people how to "do stuff" without a mouse... Ever seen people click "login" textbox, type, take the mouse, click "password", type their password, ...
6
votes
2answers
2k views
Qt - Moving Frameless window (slow repaint?)
Hy there,
I'm new to Qt and i tried to create a Frameless window, which is dragable. The Problem is, if i move the window.. there are are thousands of (it? sorry, don't know how to describe it in ...
6
votes
10answers
592 views
Vim: transitioning from mouse to movement
I use MacVim (and gvim) a lot. I'm familiar with and use a lot of the basic movement commands (b, w, $, 0, G). However, for a lot of things—such as selecting particular lines on the screen or ...
6
votes
4answers
10k 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 ...
6
votes
1answer
500 views
Where do I start making a linux input hack?
When you hold "shift" and scroll with your mouse on a mac, it interprets your vertical scroll motion into horizontal scroll actions. This is my most missed feature when working on linux, and I would ...
6
votes
3answers
10k 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)). ...
6
votes
2answers
5k views
Java : ignore single click on double click?
Hiya - 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 ...
6
votes
3answers
12k views
c# pass through mouse events to parent control
Environment: .NET Framework 2.0, VS 2008, C#
I am trying to create a subclass of certain .NET controls (label, panel) that will pass through certain mouse events (MouseDown, MouseMove, MouseUp) to ...
6
votes
5answers
2k 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!