A mouse is a pointing device that functions by detecting two-dimensional motion relative to its supporting surface.
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 ...
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
11k views
Create a fully transparent WPF window to capture mouse events
I'm trying to trap mouse events in WPF by using a topmost, transparent non-modal window. I'm finding that this works fine if the opacity of the window is 0.01 or greater and it has a background ...
4
votes
2answers
705 views
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 ...
4
votes
3answers
6k views
Javascript: How to measure the milliseconds between mousedown and mouseup?
Looks like you can't call setInterval() from the onMouseDown event handler. I tried, didn't work.
By John Resig's explanation, this makes sense:
http://ejohn.org/blog/how-javascript-timers-work/
...
4
votes
2answers
3k views
Track mouse speed with JS
I was wondering, is it possible to track the mouse speed with JS?
What I am trying to track is how fast a user moves his/her mouse up/down and left/right.
4
votes
2answers
227 views
Unable to click custom control in design time
I'm building a custom control (inherited from TCustomControl) in Delphi XE2 (and have had this issue in other controls of mine) and in design time, I'm unable to click them. I know it has to do with ...
4
votes
2answers
5k views
Check if Mouse LButton is down?
How do I check if the Left button of my mouse is currently pressed down/dragging something(I preffer the first possibility).
I tried Mouse.IsDraging,but no result.
NOTE: I handle mouse messages in ...
4
votes
3answers
7k views
Smooth scroller based on mouse position (Jquery)
HI!
I would like to create a Smooth scroller based on mouse position. The idea is to create a outer div with a fixed width. The content is very wide and has to be scrolled to left or right, based on ...
4
votes
2answers
2k views
Is there any way to disable some DOM element from capturing mouse events?
I have an element which is on top of an initial element. This element is not a child of the initial element. I'm capturing mouseover event of the initial element. And when the mouse cursor is over the ...
4
votes
1answer
4k views
Get the mouse position during drag and drop
Does anyone know how to get the correct mouse position during a drag-and-drop operation in WPF. I've used Mouse.GetPosition() but the returned value is incorrect.
Thanks.
4
votes
3answers
726 views
How to move (or do anything with) the mouse
I'm trying to learn how to interact with the Windows API using Java and the JNA (Java Native Access), but am at a road-block. I'm trying to make the mouse do something by queuing a mouse event on the ...
4
votes
2answers
6k views
Get Mouse Position on Canvas (But NOT on window)?
I have a project in WPF 4 and vb.net 2010.
I have a canvas inside a window. The window is full screen, but the canvas is set to a solid 640x480 in the center of the window. I need to get the mouse ...
4
votes
2answers
2k views
Increasing number once per mouse click/key press in XNA
This has been bothering me lately- when I use some code like below to increase selection every mouse click:
if (m.LeftButton == ButtonState.Pressed)
currentSelection++;
Then currentSelection increases ...
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 - ...
4
votes
3answers
5k views
Java Swing: change background color on mouse over
I've implemented a simple mouse listener where the background color changes whenever the mouse enters the component (a JPanel), and it reverts back whenever the mouse leaves. This has some problems:
...
4
votes
1answer
500 views
XNA - Cannot See Mouse in Game
I've recently started checking out XNA. All is going well and I've even got a working sample started. One thing that's been bugging me is that whenever I place my mouse over the game window it ...
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
4
votes
2answers
2k views
Jquery sortable stange mouse offset
I'm working with the jQuery sortable plugin( 2 connected lists) and have a strange bug. When you drag the picture the mouse is above the dragged item
screenshot: ...
4
votes
3answers
2k views
Rotating an image with the mouse
I am writing a drawing program, Whyteboard -- http://code.google.com/p/whyteboard/
I have implemented image rotating functionality, except that its behaviour is a little odd. I can't figure out the ...
4
votes
2answers
5k views
How to detect the mouse state in Qt without a MouseEvent
Okay, using Qt, I'd like to know how to detect the current state of the mouse at any point in time - without a MouseEvent.
Using QCursor::pos(), you can get its position, but is there a way to ...
4
votes
6answers
6k views
glutPassiveMotionFunc and glutWarpMousePointer
I want to implement my own cursor in an OpenGL / GLUT window. The usual way to do this is to freeze the cursor (so it can't hit the edges of the screen) and keep track of its position yourself. I can ...
4
votes
1answer
559 views
Windows: Mouse Down on Window Decoration
In almost any Windows application, I notice that holding the mouse button down in a non-client area causes the painting to stop. Why is this required?
For example, I have a Managed Direct 3D ...
4
votes
3answers
4k views
Control the mouse cursor using C#
I'm trying to write a program using C# that would allow me to remotely take control of the mouse on a windows machine. This would allow me to issue commands to the mouse to move to a certain part of ...
4
votes
4answers
350 views
How to prevent raw mouse clicks outside an application using c#
I am attempting to control two "mice". The primary mouse (mice) are used for controlling the cursor for normal UI control (which I don't want to intercept) and a secondary "mouse" which should only ...
4
votes
2answers
1k views
MATLAB move mouse cursor to specific coordinates
Having a little bit of trouble with this one. I have a MATLAB .m file, and as part of it I want to automatically move the mouse cursor to a specific part of a figure GUI as soon as the file is run. I ...
4
votes
3answers
595 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
3answers
2k views
Mouse movement: Click the the sprite “walks” to point clicked
I'm pretty new to C# and XNA and well progrmaing (like I can follow a tutoral but most of the creating it on my own is still really really hard). Right now I'm going round and round trying to figure ...
4
votes
3answers
626 views
Using the mouse to control a game in HTML canvas
I am trying to find out if it is possible for JavaScript and HTML's to take control of the mouse and introduce relative movement control - the type of mouse control you get in first person games ...
4
votes
2answers
3k views
win32: simulate a click without simulating mouse movement?
I'm trying to simulate a mouse click on a window. I currently have success doing this as follows (I'm using Python, but it should apply to general win32):
win32api.SetCursorPos((x,y))
...
4
votes
3answers
1k views
How to fake mouse cursor position in Windows Forms C#?
I have this Windows Forms application with a simple balloon tooltip. Depending on the application's window location on the desktop and the mouse cursor location, the balloon 'tip' (or balloon pointing ...
4
votes
1answer
922 views
What should i do make this code work in VS 2010?
I have used this code manually to simulate a mouse click by system through code.
using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
public class Form1 : Form
{
...
4
votes
5answers
3k views
MouseBinding the mousewheel to zoom in WPF and MVVM
OK, I've figured out how to get my Grid of UI elements to zoom, by using LayoutTransform and ScaleTransform. What I don't understand is how I can get my View to respond to CTRL+MouseWheelUp\Down to do ...
4
votes
2answers
2k views
Difference between mouseListener and mouseMotionListener in Java?
Is mouseMotionListener going to trigger an event once the mouse moves over the component, whereas mouseListener only triggers if I press a button?
So if I have only a mousePressed event, then I don't ...
4
votes
2answers
537 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
1answer
3k views
User control click event not working when clicking on text inside control?
I have a user control called GameButton that has a label inside it. When I add the user control to my form, and add a click event to it, its triggered when you click on the background of the custom ...
4
votes
3answers
3k views
WPF - Determining if Mouse Is Over a UIElement
I have some xaml markup that looks essentially like this:
<Canvas x:Name="A">
<Canvas x:Name="B"/>
</Canvas>
I want to determine if the mouse is over Canvas B.
When I click ...
4
votes
1answer
2k views
How to detect mouse and keyboard inactivity in linux
I am developing an app on python which will check for user inactivity. Is there a way to check for key press and mouse move events in linux?
4
votes
2answers
3k views
Swing won't trigger mouseEntered/mouseExited properly after mouse wheel events?
I have an issue where Swing (in Java 1.6, Windows) doesn't seem to trigger mouseEntered and mouseExited events the way I want it to. I have an application where I wish to have a number of JPanels ...
4
votes
2answers
2k views
Simulate mouse select with Javascript?
I would like to select text on the page by simulating a left mouse button down and drag it to a specified x,y location (in pixels)
Can this be done with JavaScript?
Thank you.
4
votes
2answers
864 views
touchpad horizontal scrolling in emacs
app on Mac OS X on a MacBook. Most applications on the computer allow me to scroll both vertically and horizontally with a two-finger drag on the trackpad. I would like to use this ability to ...
4
votes
1answer
26 views
How can I set the mouse position in a tkinter window
I have a 3d rendering program that rotates the world around an observer based on the position the mouse is on the screen. The amount in radians that the world is rotated is defined by this line
...
4
votes
4answers
4k views
Simulate swipe with mouse in javascript
I'm trying to make an image rotator that works on mobile devices using swipe for navigation. I'm also trying to make the same rotator to work on PC browsers but to be able to use the mouse drag to ...
4
votes
1answer
798 views
cocoa - screen not refreshing after CGEventPost mouse click
I am programatically generating mouse clicks when a user clicks a certain keyboard key (CapsLock).
So I do a left mouse down when CapsLock is switched on, then a left mouse up when CapsLock is ...
4
votes
1answer
3k views
Releasing mouse capture and letting mouse click pass through
I have a control that is similar to a Popup or Menu. I want to display it and when the user clicks outside the bounds of the box, have it hide itself. I've used Mouse.Capture(this, ...
4
votes
2answers
5k views
Bluetooth mouse/keyboard emulation
I'm having a hard time finding a software that would emulates a Bluetooth keyboard (and/or mouse) that follows HID standard.
I've already found one, but I couldn't get it working: ...
4
votes
2answers
762 views
Loss of Silverlight mouse up events after mouse capture?
I created a very simple test control that has a Rectangle on a canvas (within other containers, but inconsequential). The Rectangle has event handlers for mouse down, mouse move, and mouse up. If I ...
4
votes
1answer
1k views
Is it possible to map a key press to simulate middle-click in xwindows?
I'm wondering, is it possible to somehow map a key-press event to act like a middle-key click of a mouse in Xwindows? They are diffrent devices, I know, but if there was a way to trigger a ...
4
votes
4answers
658 views
Block Access mousewheel behavior in external ActiveX controls
In an Access (2002 / 2003) data-bound form, a turn of the mousewheel moves to the next/previous record, even if the cursor is inside a multiline text field or a listbox. This is a major annoyance to ...