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

learn more… | top users | synonyms

2
votes
4answers
2k views

Setting a timeout on ifstream in C++?

We're trying to read data from 2 usb mice connected to a linux box (this data is used for odometry/localization on a robot). So we need to continuously read from each mouse how much it moved. The ...
2
votes
2answers
554 views

How to detect drag operation at windows global scope?

When I drag a folder at the edge of the screen in Windows XP, it become a toolbar, containing the files in the folder. How can windows detect there is a drag operation? If I want to write a ...
2
votes
2answers
4k views

wxWidgets: Detecting click event on custom controls

How to add a click event listener to my custom control made with wxWidgets? The custom control uses wxWindow as the base. On the event list I see wxEVT_LEFT_DOWN wxEVT_LEFT_UP wxEVT_LEFT_DCLICK ...
1
vote
3answers
166 views

How can I capture all mouse events in Java?

I want to capture mouse events in Swing Component, like MouseDrag Event etc, but I have found there are some events missing when I move my mouse very quickly, It seems not all of the events are ...
1
vote
1answer
170 views

Pygame: Mouse Specific Axis Detection

How can I detect ONLY the X axis, for example? maus_x = 0 maus_y = 0 pygame.mouse.get_pos(maus_x, maus_y) while not done: for event in pygame.event.get(): if event.type == ...
1
vote
2answers
624 views

Adding sound on clicking a image in HTML 5

I have a image on my html page and i want it to play a sound effect when i click on it. Here's the image code: <img src="images/button1.png" width="32" height="32" onclick="alert();"> I want ...
1
vote
3answers
373 views

Reveal an image in a mouse trail

I have two images one that is black and white, another in colour. What I want to do is let the user drag the mouse over the top black and white image so that it reveals the colour version underneath. ...
1
vote
2answers
682 views

Can I get a MouseLeave event while Mouse.Capture() is active?

I have a button. On Button.MouseRightButtonDown, I'm calling Mouse.Capture(button), because I want to detect if someone releases right-click outside of the Button. I also have a Button.MouseLeave ...
1
vote
1answer
1k views

JQuery UI selectable plugin - Multiple mouse drag selection and unselect option

I am using the JQuery UI selectable plugin to select table cells, here is the example code: http://jsbin.com/ejewes/edit#javascript,html,live I want to make changes to this so that I am able to 1. ...
1
vote
1answer
358 views

Zoom toward mouse (eg. Google maps)

I've written a home-brew view_port class for a 2D strategy game. The panning (with arrow keys) and zooming (with mouse wheel) work fine, but I'd like the view to also home towards wherever the cursor ...
1
vote
1answer
2k views

C# / Kinect Controlling the mouse cursor

If I wanted to control the mouse cursor, including clicking etc, what API would I need to use for this? For example, i'm developing an application for the PC using the Kinect, and I wish to control ...
1
vote
2answers
1k views

How to detect mouse clicks?

how can i detect mouse clicks on Windows ? (XP/Vista/7). for example when my application is running , it will detect if user click on something (not on that application UI but on Windows UI). if yes , ...
1
vote
1answer
436 views

Setting X Coordinate from Mouse Location

i have a darkBlueRect rectangle sprite and a copy of the same sprite with a larger scale and a lighter color - lightBlueRect. i'm attempting to shift the location of the lightBlueRect according to ...
1
vote
1answer
4k views

Move Mouse - VBScript and Excel Macro

Found a script that uses Excel to move the mouse in VBScript. This is almost exactly what I am looking for for my project, however I need to alter a small bit to enable me to enter coordinates in the ...
1
vote
1answer
206 views

WPF: TextBlock over a listview: how to ignore clicks in the TextBlock and let the listview handle them

I have a listview which displays a lot of info, but when it's empty I want to overlay a textblock over it which says "No Info to Display" or "Do bla-bla-bla to add info". The listview is set up to ...
1
vote
1answer
5k views

Jquery slider that slides while mouse move

I'm looking for a jquery slider script that is able to right-left slide while I'm moving my mouse. Anyone knows that kind of script? I want to achieve an effect like this one but it should be scrolled ...
1
vote
1answer
739 views

Moving the mouse pointer in C++ fails on Linux

I'm using the following code to hide and show the mouse cursor: XDefineCursor( m_display, m_window, show ? None : m_hiddenCursor ); XFlush( m_display ); That works fine. However, when I run ...
1
vote
1answer
396 views

The “Default Zoom Level” Mouse Button

Many mice and keyboards have "zoom" buttons on them. These almost always generate Ctrl+Mouse Wheel messages to the applications, so they are easily accounted for by us programmers. But my current ...
1
vote
1answer
892 views

Mouse left button up event and openfiledialog

I have few images in a grid, then when i click a button, a "open file dialog" comes up.(of course, over the images) Microsoft.Win32.OpenFileDialog dlgOpenFiles = new Microsoft.Win32.OpenFileDialog(); ...
1
vote
2answers
2k views

Clicking mouse by sending messages

I'm trying to send mouse clicks to a program. As I don't want the mouse to move, I don't want to use SendInput or mouse_event, and because the window that should receive the clicks doesn't really use ...
1
vote
3answers
392 views

Determine if mouse is still in javascript/jQuery?

I'd like to be able to use jQuery to trigger an event if the mouse has been stationary for a certain amount of time. Any ideas? I'm not even sure where to start!
1
vote
1answer
5k views

How to get the coordinates of an image mouse click in the event handler?

In the following WPF app, I have an Image in a ContentControl. When the user clicks on the image, how can I get the x/y coordinates of where the mouse clicked on the image? XAML: <Window ...
1
vote
3answers
2k views

WM_MOUSELEAVE not being generated when left mouse button is held

In my Win32 app, I don't get WM_MOUSELEAVE messages when I hold down the left mouse button and quickly move the mouse pointer out of the window. But If I, holding down the left mouse button, start ...
1
vote
3answers
880 views

Get size of mouse cursor in javascript

I need to determine the width and height of the current mouse cursor used on our webpage. I need to show a div right under the cursor, and possibly to the right of it. So I need to determine the ...
1
vote
1answer
5k views

How to get the mouse button state in Silverlight outside of button press events?

I have the following situation I handle when the left mouse button is pressed in my Silverlight app and do some things while the mouse is held down and the mouse moves. When the left button is ...
1
vote
3answers
2k views

Pass mouse events to applications behind from a Java UI

The question I have is exactly same in requirement as http://stackoverflow.com/questions/173579/how-to-pass-mouse-events-to-applications-behind-mine-in-c-vista , but I need the same for a Transparent ...
1
vote
5answers
816 views

How do I detect if both left and right buttons are pushed?

I would like have three mouse actions over a control: left, right and BOTH. I've got the left and right and am currently using the middle button for the third, but am curious how I could use the ...
1
vote
1answer
2k views

Using SendMessage for Simulating User Mouse Clicks

I need to use SendMessage fro simulating user clicks in a target program as SendMessage blocks until the event that it triggers is finished processing. The reason for this is that this blocking gives ...
1
vote
2answers
2k views

directx mouse click simulation

How can I simulate the mouse click in a directx application? mouse_event and PostMessage with WM_LBUTTONDOWN don't work... so it must be something to do with the DirectInput I haven't found out ...
1
vote
1answer
482 views

How to tell if mouse pointer icon changed

I'm writing a screen recording app for Windows in Delphi 7 and wish to know when the mouse pointer changes in my app (like from a normal pointer to a resize pointer, etc). Currently what I'm doing is ...
1
vote
1answer
1k views

How do I send mouse/keyboard input without triggering LLMHF_INJECTED flag?

At the moment I use the SendInput() function but if you install a low level mouse hook the LLMHF_INJECTED is set indicating that the input was injected into the stream. Is there a way of sending mouse ...
0
votes
2answers
120 views

Obtaining Mouse Coordinates from Kinect video image

I'm learning Kinect and C#, so I'm having some problems with my new project. I want to get the distance from a certain object to the Kinect. I'm thinking of using solids to make it simple. So the idea ...
0
votes
1answer
103 views

Visual marker of mouse clicks using Java

I am creating a screen recorder software using Java. Almost 80% work has been completed. Now I need to create a visual marker of mouse clicks using Java. So that I can see in the playback video that ...
0
votes
3answers
344 views

Using SendMessage to simulate mouse clicks

What I need Simulate messages (mouse mainly, but keyboard too) without moving the cursor. The message goes to the focused window (at first, I want for minimized windows, but I didn't find how to do ...
0
votes
1answer
365 views

How can i get the absolute mouse position in Linux in C

As far as i know the two ways to get mouse position are using libgpm or reading /dev/input/mice file. But the latter just returns a relative position from the last position. So my question is how can ...
0
votes
2answers
126 views

Middle button click to scroll

How do I achieve this in a WinForms container control when the scroll bars are visible? Highlighted here (Google Chrome browser): EDIT: This cursor is the only one that is visible on a screenshot. ...
0
votes
1answer
205 views

Ruby Mouse Over is not long enough, may need a delay of some sort

Hope you all are well. This is my first post. I am trying to write a script in Ruby using Cucumber and the Selenium 2 framework. I am trying to find out how to click on any given link on a hover ...
0
votes
1answer
360 views

Increase Cursor Size on Entire Desktop

First of all, please put aside notions of "Your application shouldn't do this". This is exactly what the people purchasing this software will be expecting. How can I, system-wide, increase the size ...
0
votes
1answer
305 views

What can block mousePressEvent or Event Filter Mouse Click Events?

I can't seem to get any mouse clicks in a QTreeWidget. I have tried... ...overriding mousePressEvent, but it never runs at all. Not even to log a message. ...using an event filer. It works for ...
0
votes
3answers
346 views

wxpython: Set Cursor to Absolute Screen Location And Click

I'm having a little trouble trying to get WarpPointer to work out appropriately for me. The scenario I'm trying to do is akin to recording a user's clicks and then replaying them on the screen. I've ...
0
votes
1answer
501 views

Unable to highlight text in textboxes in IE9

I have C# MVC web app that has some textboxes that in IE9 you can enter in text, but you can't highlight via the mouse or via holding shift and the arrow keys. I've looked around on the web and i've ...
0
votes
1answer
610 views

convert window coordinates to 3D world coordinates with glut function glutMouseFunc()

I am trying to get the 3D coordinates of a mouse click C++/OpengGL with the glut function glutMouseFunc(). So I created a function like this: void mouse(int button, int state, int x, int y){ ...
0
votes
1answer
99 views

mouse position count

Hi I'm using Jquery's mouse position to find the position of the page. I would like it to have it behave more like latitude and longitude coordinates. $().mousemove(function(e){ ...
0
votes
0answers
941 views

Record mouse movement with javascript [closed]

I'm a beginner in javascript. But even togh I'm trying to build a simple mouse recorder in javascript. I will activate this script for aproxematly 50 visitors to analyse how the visitor interacts ...
0
votes
2answers
685 views

Simulate mouse click on a minimized window

I am currently writing an application in C# that will recognize certain patterns on the screen and move to mouse to click on it. Currently, the application needs to have the focus and the mouse cursor ...
0
votes
3answers
1k views

Python Tkinter - canvas scrolling with mouse position

I think this is a very common question, but I couldn't find the answer. I'm trying to make a window that scrolls depending on the mouse position: if the mouse is close to top of the screen, it ...
0
votes
0answers
800 views

How to programmatically disable the PS/2 compatible mouse?

I want to write a program to disable the PS/2 compatible mouse for my laptop. I searched the internet over and over again, and only get a little information about that. I looked into this question, ...
0
votes
2answers
2k views

Simulate Mouse/Keyboard Input In WPF

There are many questions relating to simulating mouse/keyboard input in WPF (and Windows, for that matter). I have something a little different than the usual question, I think, and I'd like your ...
0
votes
1answer
218 views

In Xul, within a transparent window, how do I hide the mouse cursor?

I have a Xul window that is transparent, and I need to hide the mouse cursor after 1 second. Applying cursor: none will not work, the mouse cursor still shows up in the transparent part of the window. ...
0
votes
1answer
2k views

mouse_event WinAPI call not working when cursor is over Flash

I am writing a small program which can simulate mouse clicks at specified positions. Using the Win32 API call mouse_event like so: [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention ...