A mouse is a pointing device that functions by detecting two-dimensional motion relative to its supporting surface.

learn more… | top users | synonyms

1
vote
3answers
4k views

Simulating a mouse button click in Windows

I'm writing Remote Desktop clone in C++ using QT. So far I'm able to move the mouse cursor around fine. QT has a nice setPos function for that. However, I'm a bit lost as to what API/Library to use ...
7
votes
1answer
974 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 ...
5
votes
2answers
2k views

How can I simulate mouse events from code?

I would like to simulate mouse events using the Win32 API; how can I do it? What I want to do is simulate the event at the most basic level, the level at which the system has just the event type and ...
3
votes
2answers
3k views

cocoa application changing mouse cursor?

I have a cocoa application that has a view which is clickable. I cannot figure out how to change the cursor when the user mouses over it. I want to do this so that the user knows that they can click ...
3
votes
1answer
977 views

Java Keyboard/Mouse activity (even outside of my app)

I need to detect when the mouse or keyboard activity is present. My application runs in the background (tray) and I need to detect this activity even when my app isn't in focus. I don't need to know ...
3
votes
3answers
3k views

How to pass mouse events to applications behind mine in C#/Vista?

I am writing a very specialized app in C# that floats as a mostly transparent window over the entire desktop. I want to be able to create and pass mouse events to applications behind mine, and have ...
2
votes
1answer
331 views

How I can stop vertical scroll by mouse

I am using java script/Jquery in web browser.I made a custom horizontal scroll bar which is working with mouse wheel or mouse scroll.commonly mouse scroll works with vertical bar.So it conflict with ...
1
vote
3answers
311 views

Transform screen coordinates to model coordinates

I've got some sort of newbie question. In my application (processingjs) i use scale() and translate() to allow the user to zoom and scroll through the scene. As long as i keep the scale set to 1.0 ...
1
vote
1answer
2k views

How to calculate look at point to move the camera with the mouse in OpenGL/GLUT?

This will be confusing for me to explain so please bear with me. I've already implemented most type of movements and rotations in my camera class, everything is working with the keyboard, now I want ...
1
vote
4answers
3k views

Mouse hook with C#

I am trying to emulate "hardware" mouse clicks as it appears that some software blocks input from PostMessage for instance. I know there's SendInput, but that's not an option as I need this to be ...
-1
votes
3answers
4k views

How do I get another application's window handle passed to Delphi via a mouse click

How can I get the handle of a window to be passed to Delphi by the user selecting the window (could be any other aplication's window) by clicking with the mouse on it. In my Delphi app I could have a ...
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 ...
6
votes
2answers
499 views

How does a ComboBox capture mouse when it is dropped-down?

I am trying to model the behavior of a ComboBox dropdown (or other drop downs for that matter, including context menus) where the drop down closes when you click anywhere else, even on something that ...
6
votes
1answer
1k views

Mouseup bug in all browsers except Firefox?

Mouseup doesn't fire on scroll bar for elements dynamically added (except Firefox): CSS: #dBox { height: 100px; width: 230px; overflow - y: auto; } HTML: <input type="text" ...
5
votes
2answers
501 views

smoothing mouse movement

I'm developing a software to move the mouse based on certain coordinates which i get from a depth image from kinect. but I have 30 frames/second(images/second) and those coordinates changes with every ...
5
votes
5answers
3k views

Determine which element the mouse pointer is on top of in Javascript

I want a function that tells me which element the mouse cursor is over. So, for example, if the user's mouse is over this textarea (with id wmd-input), calling window.which_element_is_the_mouse_on() ...
4
votes
2answers
527 views

Draw mouse pointer icon?

I am coding little fun gadget, i want to be able to draw second(or more) mouse pointer icons at different location than the original mouse but to move it according to move of original mouse. I know ...
4
votes
3answers
591 views

How can I use the back and forward mouse buttons in a Swing application?

The question is pretty simple. I couldn't find many links regarding this issue, and the ones I found didn't seemed to avoid the real question. My application must handle the mouse pressed/released ...
4
votes
6answers
8k views

How to disable mouse right click on a web page?

I want to disable mouse right click on an HTML page. I have a page where user has to enter the details. I don't want the user to see the menu thats get displayed with the mouse right click. Rather I ...
4
votes
4answers
1k views

How to get cardinal mouse direction from mouse coordinates

is it possible to get the mouse direction (Left, Right, Up, Down) based on mouse last position and current position? I have written the code to calculate the angle between two vectors but I am not ...
3
votes
1answer
2k views

smooth scroll with mousewheel to next or previous div

I'm trying to get a javascript on my site so when a person scrolls on the website, it automatically scrolls to the next or previous Div with a certain class. I'm working with smoothscroll and ...
3
votes
1answer
412 views

Windows IME: custom Korean virtual keyboard

I have problem with Korean Windows IME. I am designing a virtual (screen/software) keyboard for a piece of embedded software. I rely on Windows IME and it seemed to work fine for Japanese and Chinese ...
3
votes
2answers
2k views

Mouse Down events in Objective-C

I know this question has been asked a lot before, but nothing will work for me. The following code will not do anything at all. - (void) mouseDown:(NSEvent*)event { NSLog(@"It worked!"); } I ...
2
votes
1answer
227 views

Preventing opera mouse gestures

Is it possible to prevent opera mouse gestures for right button? I have web app on html5 and I decided to use right mouse button. But it doesnt work in opera, because opera has mouse gestures. ...
2
votes
2answers
771 views

How to make a panel appear when the mouse moves over it? delphi

How can I make a panel appear with everything that is in it when I move my mouse over its location? When I move it off again, it fades back out? Doing it when it is visible is not a problem (except ...
2
votes
0answers
1k views

Moving mouse cursor when station is locked (java)

I have the need at my workstation to disable a long idle. I've been using a piece of code that moves the mouse on the screen once a while, which worked pretty well. Lately, our security department ...
1
vote
3answers
4k views

Adding a custom cursor in XNA/C#?

I am currently developing a game in XNA. I would like to add a cursor (not the standard Windows one)to the game. I have already added the sprite to my contents folder. I have a method for finding the ...
1
vote
3answers
3k views

mouse move on element

how i can move curser with jquery on an element when page loading is over? thanks
0
votes
5answers
430 views

How to perform a Virtual Mouse click C# without using a mouse

I'd like to perform a click in a windows application, without using the real mouse (so I can minimize it). Like a bot. How would I do this?
0
votes
2answers
113 views

I want to create an invisible clickable object over an image in Java

So I'm creating a game in Java in which the user clicks on an image that's different from the rest. I've already got the images for the level created, but I just want to make it so that if the user ...
0
votes
0answers
143 views

Rotate a triangle polygon according to mouse position?

I'm coding my own multi-player game in Java; I'm in need of help with rotating a triangle polygon according to the mouse position. I have this triangle, which represents the character, the player can ...
0
votes
1answer
545 views

Getting point on y=0 plane from mouse coordinates without using OpenGL calls

I have: screen coordinates x,y (0,0 being the middle of the screen, 1,1 being top left) screen dimensions camera location vector camera look vector projection matrix ModelView matrix y=0 Plane ...
0
votes
2answers
2k views

Detecting a Mouse Click Anywhere on Screen with Java

Is it possible to detect a mouse click anywhere on a screen, outside of my application? I have written an application to do this in C#, but would like to write a version of this in Java so that it ...
0
votes
2answers
572 views

Move a window on keypress + mouse (like linux ALT + mouse down)

Simple, i want to move a windows pressing ALT+MOUSE, like linux os (ALT+drag). It's possible to pass a win32 api (move api) to the windows interested clicking on it? I have a windows services that ...
0
votes
1answer
4k views

C# Winforms - change cursor icon of mouse

How to change cursor icon to the 'busy icon' usually shown on the desktop? How can i set Animated files (.gif,.ani) instead of cursor ?
0
votes
1answer
2k views

Block/Nullify mouse movement/click in C#

I'm writing an application to fully control the mouse click/movement. What I mean is that say for instance, if I have the application running, form fully transparent, fullscreen, then if I click the ...
40
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 ...
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: ...
7
votes
3answers
9k views

Click and drag selection box in WPF

Is it possible to implement mouse click and drag selection box in WPF. Should it be done through simply drawing a rectangle, calculating coordinates of its points and evaluating position of other ...
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 ...
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 ...
6
votes
1answer
3k views

Simulate mouse movement in Ubuntu

Problem Am looking to automatically move the mouse cursor and simulate mouse button clicks from the command-line using an external script. Am not looking to: Record mouse movement and playback ...
6
votes
6answers
12k views

jquery: get mouse click if inside a div or not

i have this HTML page <html> <body> <div>a</div> <div>b</div> <div>c</div> <div>d</div> <div id='in_or_out'>e</div> ...
5
votes
1answer
262 views

ActionScript - Inaccurate Mouse Coordinates?

when tracing the mouseX / mouseY or localX / localY coordinates of a display object, why does x start at 1 while y starts at 0? for example, i've drawn a simple 400 x 400 pixel sprite onto the stage ...
4
votes
4answers
2k views

Algorithm to emulate mouse movement as a human does?

I need to test a software that treats some mouse movements as "gestures". For such a task I need to emulate mouse movement from point A to point B, not in straight line, but as a real mouse moves - ...
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
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 ...
7
votes
1answer
7k views

How to move mouse cursor using c#?

I want to simulate mouse movement every x seconds. For that, I'll use a timer (x seconds) and when the timer ticks I'll make the mouse movement. But, how can I make the mouse cursor move using c#? ...
5
votes
3answers
2k views

Swapping left and right mouse button in .NET

How do I swap left and right mouse buttons in .NET (preferably C#)? Basically the result should be the same as if the user checked the "Switch primary and secondary buttons" checkbox in the Mouse ...
4
votes
2answers
4k views

Which is the easiest way to simulate keyboard and mouse on Python?

I need to do some macros and I wanna know what is the most recommended way to do it... So, I need to write somethings and click some places with it and I need to emulate the TAB key to.. Thank you