A mouse is a pointing device that functions by detecting two-dimensional motion relative to its supporting surface.
6
votes
1answer
782 views
Mouse support in QWS
I have compiled Qt4 embedded SDK for using on BeagleBoard with following options:
./configure
-embedded arm
-platform qws/linux-x86-g++
-xplatform qws/linux-TIarmv7-sgx-g++
-depths 16,24,32
...
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" ...
6
votes
2answers
232 views
Simulate mouse click for side buttons
I am aware of how to use mouse_event to simulate a mouse click for the left or right buttons. What I would like to know is if this function or another in C#/C++ allows you to simulate the mouse4 or ...
6
votes
2answers
501 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
556 views
Mouse emulation in a different program
I'm working on my own software to operate the mouse on my computer using C# and the kinect SDK. I really want to try using it to play a game like Red Alert, or some sort of RTS, or even just for ...
6
votes
2answers
3k 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
2answers
1k views
When a mousedown and mouseup event don't equal a click
I've been using some buttons for a while now that have a depressed effect as they are clicked using position relative and a top: 1px in the :active pseudo-class.
I had problems with click events not ...
5
votes
12answers
6k views
managing two computers as if extended desktop is used
I need to control two computers each connected to its own screen, using one mouse & keyboard, switching between them by mouse moving to the side-end of the screen (as in extended desktop ...
5
votes
3answers
388 views
5
votes
3answers
3k views
Copying stuff from vim running in putty
I am running Vim 6.3 through putty and putty connection manager. I have the mouse option set (set mouse = a). I am able to paste things from the (windows) clipboard to vim by but selecting text in ...
5
votes
2answers
420 views
QPushButton() should react as long as it is pressed
I am using QPushButton() in my programme. With these buttons I rotate my object.
Works fine so far. The only Problem is that i have to click multiple times to rotate the object a little further. This ...
5
votes
1answer
1k views
How to Detect Forward and Back Mouse Button Events in Delphi?
If a mouse has other buttons in addition to the standard left/right/middle (e.g. forward/back), how can we detect those button clicks in Delphi?
An example of how this is used is the Internet ...
5
votes
2answers
3k views
Box2d: mousejoint without inertial delay
I'm using mousejoint to drag bodies in box2d, but it causes inertial delay.
Does it exist any way to drag a body instantaneously?
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 ...
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() ...
5
votes
2answers
2k views
jquery mouseout problem
<div id="parent">
<div id="child">cx</div>
</div>
when i use jquery
$('#parent').mouseout(function(){
//something here
});
i wonder why when my mouse enter the child div ...
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 ...
5
votes
4answers
8k views
Need javascript code for button press and hold
I'd like a short smallest possible javascript routine that when a mousedown occurs on a button it first responds just like a mouseclick and then if the user keeps the button pressed it responds as if ...
5
votes
2answers
2k views
C# Getting the window with focus?
I'm making a C# WPF application, and every time the users clicks somewhere outside of my application, I want to display an alert with the TITLE of the window clicked. To detect clicks outside my ...
5
votes
2answers
2k views
getting system's double click timer interval in WPF (value from control panel)
I have a FrameworkElement and I want to perform action A when the user single clicks, and action B when the user double clicks.
Due to the way events are delivered, I always get a single click event ...
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
1answer
875 views
WPF ToolTip disappears on mouse down
I've got tooltip on an element that I want to stay open even when the user clicks or holds the mouse button down while over my element.
Is there anyway to do this?
5
votes
1answer
744 views
How to check if the mouse moves, while the left mouse button is down, in c#
I need to find a way to check if the mouse moves in c#, while the left button is down. Ive searched online and havent found any answers that work.
5
votes
2answers
6k views
Capturing mouse/keyboard events outside of form (app running in background)
I have an app that runs in the background (minimized/task tray). I need to be able to detect mouse activity (clicks, move) as well as keyboard activity.
What is the best way to do this given the ...
5
votes
2answers
771 views
Optical Mouse as encoder
Recently I discovered the beauty of the optical mouse as an incremental position encoder.
An optical mouse usually contains one component in which a camera is linked to an image processor linked to ...
5
votes
2answers
5k views
How to get object in WebGL 3d space from a mouse click coordinate
I'm building a boardgame in WebGL. The board can be rotated/zoomed. I need a way to translate a click on the canvas element (x,y) into the relevant point in 3D space (x, y, z). The ultimate result is ...
5
votes
3answers
781 views
jscrollpane block scrolling parent
Can i make jscrollpne such that parent pane doesnot scroll even when child scroll has reached its bottom. Now when child scrolling reaches bottom scrolling of parent occurs. I want parent to scroll ...
5
votes
1answer
4k views
Mimicking/faking a Mouse Click and Mouse Wheel using Qt
How to mimic/fake a Mouse Click and Mouse Wheel using Qt? To be more specific, I want to click inside and outside the Qt application. Thanks in advance!
5
votes
2answers
1k views
Handle all mouse events in Android
Well, the question is rather simple - how can i handle left/right/middle click, wheel and (!)hover move in android 2/3/4.
I've been digging on this topic and found the following
in api 14 we can ...
5
votes
2answers
605 views
Changing the cursor for hovering over hyperlinks when JEditor.setEditable() is called
I have a JTextPane containing hyperlinks. When it's editable, hyperlinks aren't clickable, and the cursor does not change state when hovering over them (e.g. to a hand). When it is not editable, ...
5
votes
3answers
598 views
How to simulate mouse clicks and keypresses in F#
I'm doing a program that's supposed to move the mouse around and press automatically at places where I specify in the code. Right now i've managed to move the cursor by using this line:
...
5
votes
1answer
214 views
How to generate mouse event programmatically?
There are two very useful functions in SLIME: slime-copy-or-inspect-presentation-at-mouse and slime-presentation-menu. But they must be called with an event argument. In order to generate an even I'd ...
5
votes
1answer
2k views
Simulate a physical mouse move in Mac OS X
I'm looking for a way to simulate a mouse move event in Mac OS X 10.6. It would have to be defined in mouse units (rather than pixels — that is important!)
I need this for an experiment which ...
5
votes
6answers
3k views
Detecting browser capabilities and selective events for mouse and touch
I started using touch events for a while now, but I just stumbled upon quite a problem. Until now, I checked if touch capabilities are supported, and applied selective events based on that. Like this:
...
5
votes
4answers
3k views
Simulating mouse clicks on Mac OS X does not work for some applications
I'm writing an application for Mac OS X 10.6 and later in C++. One part of the application needs to simulate mouse movement and mouse clicks. I do this currently by posting CGEvent objects using ...
5
votes
3answers
1k views
Subscribing to mouse events of all controls in form
How can i easily catch the "mouse down" events of all the controls in a form, without manually subscribing to each and every event? (C#)
Something like the "KeyPreview" feature, but for the mouse ...
5
votes
1answer
2k views
How to simulate mouse clicks in QML?
I'm trying to send a QMouseEvent to the QML objects being currently displayed.
The QApplication::sendEvent() always returns false meaning that my event did not get handled; but I don't see why.
Maybe ...
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 ...
5
votes
1answer
672 views
Programmatically Disable Mouse & keyboard
I would like to programmatically disable mouse & keyboard input temporarily on a mac (using Objective C/C/Unix) & then reenable them.
5
votes
3answers
936 views
Losing hover when animating with jQuery (without moving mouse)
I have this row of thumbnails that I am animating with jQuery.
Each of these thumbnails has a hover and active class.
They work fine but when I animate the list, the new thumbnail under the ...
5
votes
5answers
824 views
Apple Events to Control Mouse Remotely
I'm not even sure where to begin with this question...
I want to be able to send mouse-click events to another machine, as if the user had clicked on that machine.
I can do it on the same machine ...
5
votes
2answers
171 views
How to tell what physical device clicked a button in C#?
I have a Form with buttons. This application is meant to run on a touchscreen computer. When a button is clicked I would like to know whether it was clicked by the mouse or the touchscreen.
Is this ...
5
votes
2answers
2k views
Simulate mouse click/Detect color under cursor in Python
I am very new to python. I am trying to write a program that will click the mouse at (x, y), move it to (a, b), and then wait until the color under the mouse is a certain color, lets say #fff. When it ...
5
votes
2answers
937 views
Java game development - Look and shoot at mouse coordinates
I'm going to make a game where you run around with a character, seen from above. But the problem is how do I make the character look at the mouse all the time? And how do I calculate the angle so that ...
5
votes
2answers
537 views
“Hot Track” effect on a Windows Form UserControl
What is the easiest way to implement a UserControl that mimics a "hot track" effect of drawing a border around itself when a mouse is hovering above it?
I have unsuccessfully tried to inherit a ...
5
votes
1answer
497 views
Non-HID Mouse driver on NT
I'm looking to write a custom touchpad driver for my laptop, as its support under Windows is abysmal. I have the protocol figured out and I'm ready to go ahead and implement it, but I'm a bit ...
5
votes
2answers
1k views
Mac OS X: CGGetLastMouseDelta and moving the mouse programatically
I'm developing an extension to MATLAB's PsychToolbox that allows for better control of the mouse during psychophysical experiments (specifically, preventing the screen boundaries from limiting drag ...
5
votes
1answer
634 views
Android register connection to windows as an HID client
after doing some preliminary searching, I was not able to find much information on how to register android as an HID client. That is, I would like to be able to send mouse controls from my phone to to ...
5
votes
1answer
329 views
Normalize and smooth the mouse movments?
Is there a way to smooth out the mouse movments? I want to remove all the small jitter in normal mouse moving with the hand, like you can never draw a clean line in paint because of you hand doing ...
5
votes
2answers
1k views
jquery tooltip IE problem
I am using jquery tooltip in area which is reloaded with ajax. So I bind the js for tooltip and all work fine for most browser but not for IE 7 and 8. There is a problem with position and it give me ...

