Tagged Questions

For issues relating to setting up, subscribing to, or handling mousemove events.

learn more… | top users | synonyms

153
votes
10answers
18k views

Why does Google +1 record my mouse movements?

This is only on pages with a Google +1 box on my website: It seems to be firing off an event on every mouse move. Anyone know what it is doing? I searched on Google (perhaps I should try Bing for ...
7
votes
3answers
224 views

How does the triggering of mousemove work in Javascript?

I have an object that prints the mouse's x and y positions on every mousemove. It's something like this: $('#canvas').mousemove(function(e){ $('#output').prepend(e.pageX + ',' + e.pageY); }); ...
6
votes
1answer
921 views

DoDragDrop disables MouseMove Events

After having started a Drag & Drop operation by DragDrop.DoDragDrop(...) no more MouseMove Events are fired. I even tried AddHandler(Window.MouseMoveEvent, new ...
5
votes
1answer
361 views

MouseMove sensibility

I use MouseMove event to move objects(say labels). simple principle(schematic): OnMouseMove(e MouseEventArgs) if e.Button == Left deltaX = e.X - lastX foreach label in labels ...
4
votes
3answers
49 views

jQuery /hover()/.mousemove() optimization issue

I'm working on a basic modal example in which the modal would follow the mouse cursor as long as the user was hovering over a certain section. The issue I'm having is, when going from left to right, ...
4
votes
1answer
69 views

GoogleMaps loses mouseUp event if rectangle redrawn in mouseMove event

The following code sample has me baffled. It's the simplest version of a larger piece of code that I can use to demonstrate my problem. Basically I want the user to be able to draw a bounding box by ...
4
votes
2answers
508 views

Is there any way to accelerate the mousemove event?

I wrote a little drawing script (canvas) for this website: http://scri.ch/ When you click on the document, every mousemove event basically executes the following: - Get coordinates. - ...
4
votes
1answer
909 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 ...
3
votes
3answers
83 views

How to track mouse X/Y position and print it to a label?

I know how to modify cursor position from examples on MSDN. My question is how to check position of mouse while mouse moves and then print X and Y position to representing labels? EDIT: Lets say I ...
3
votes
2answers
199 views

IE9 Mousemove event not firing during Mousepress

When I left-click and drag the mouse, IE9 doesn't recognize the mousemove event. I need to know where the mouse is located while it is being moved during it's depressed state. Other browsers are ...
3
votes
2answers
508 views

Javascript mouse events after mousedown on item (img) not working as expected

I'm trying to improve my mouse event knowledge so this question is about why what I'm doing isn't working more than whether I could use a drag and drop module. I'm using Dojo and I've connected to ...
3
votes
3answers
578 views

How to set mousemove update speed?

im generating a function where it needs to set easy and fast a signature. I'm writing the signature in an canvas field. I use jQuery for it, but the refresh rate of mousemove coordinates is not fast ...
3
votes
2answers
271 views

jQuery: Easy way to trigger “mousestop” event

HI, I'm trying to call a function when the mouse stopped moving for x seconds. Actually thats pretty easy with the following code: var timer = null; $(document).mousemove(function(){ clearTimeout ...
3
votes
2answers
389 views

jQuery AJAX call on mousemove

I have an image being created with gdimage, which has 40000 5x5 blocks linking to different user profiles and I want that when you hover over one of those blocks, AJAX will go and fetch that profile ...
3
votes
1answer
228 views

What are some different methods to drag and move objects around without using Horizontal or Vertical Alignment set to Left and Top

I am developing a Dashboard application where I would like the user to be able to resize and move their chart widgets to where they please. I have had problems with the being able to move and resize ...
3
votes
4answers
954 views

Hiding the mouse cursor when idle using JavaScript

Is it possible to use JavaScript to set the cursor attribute to the property none if the mouse is inactive for a certain amount of time (say, five seconds) and set it back to auto when it becomes ...
3
votes
3answers
808 views

Jquery mousemove() gets activated without a mouse movement

Hi I am trying to do a google.com like fade in (Cept i want to fade out text) <script src="http://code.jquery.com/jquery-latest.min.js"></script> <script> ...
3
votes
1answer
702 views

Fixed mouse pointer with jQuery draggable

I'm building a little game in HTML5. The canvas element is a viewport into the game world. The user can move the viewport's position in the world by clicking and dragging with the mouse on a small ...
3
votes
1answer
674 views

Webkit and Safari fire mousemove even when mouse doesn't move

I've read about issues where the mousemove event is fired twice in Safari/Webkit, but the problem I'm facing is that mousemove fires even when the mouse is not moved. That is: it already fires when ...
3
votes
2answers
984 views

Image Hidden, then on mouse movement Fade-In, Fade-Out and Fade-In again

I am trying to get an image to fade out when there has been no mouse action for 3 seconds and then fades in when the mouse is again moved. I would also be appreciative if anyone could tell me how I ...
3
votes
3answers
1k views

Global Mouse Moved Events in Cocoa

Is there a way to register for global mouse moved events in Cocoa? I was able to register for the events using Carbon's InstallEventHandler(), but would prefer a Cocoa equivalent. I have looked for ...
2
votes
2answers
30 views

How to Roll back original width for disabled input after cursor pass over?

How do I roll back to original width this disabled input after cursor pass over, I already tried with.blur but is not working. $('input[readonly]').mousemove(function(){ if ...
2
votes
1answer
90 views

What's the most efficient way to handle displaying a dialog/modal in JavaScript?

[UPDATE:] here is a link to test (if you don't want to clone the repo) http://jsfiddle.net/integralist/g9EPu/ I've got a lot of dialogs/modals that need to be displayed when mousing over certain ...
2
votes
1answer
81 views

Mousemove gets slower when you move fast with mouse

im trying to make jquery box drag, but the problem is that when i drag really fast the "mousemove" is moving slower than my mouse and when the mouse gets out of the dragging #box the mousemove wont ...
2
votes
2answers
169 views

jQuery force mouse move and click

Demo: http://jsfiddle.net/thisizmonster/VRPDa/ Purpose: Mouse must move to button position (button position must auto calculate) Fire mouse click event How do it? Edited/Added Since everyone ...
2
votes
3answers
79 views

jQuery/CSS Offset + mousemove question

Demo: http://jsfiddle.net/H45uY/6/ What I'm trying to do here is make the top-left corner of the <div> follow the mouse. The code works fine without the paragraph (see demo above), but when you ...
2
votes
1answer
122 views

WPF PreviewMouseMoveEvent firing to slow

I'm trying to make a custom WPF control where a TranslateTransform is applied based on two doubles (TranslateX, TranslateY) that are data bound to the TranslateTransform, this works perfectly well ...
2
votes
1answer
150 views

PreviewMouseMove firing twice

I have a problem with a simple code. I was looking for a few hours a solution, but no effects. I have a Canvas and Rectangle. I move Rectangle, if the cursor is outside, delegate pMouseMove fires only ...
2
votes
1answer
257 views

MouseMove event with Right Mouse Button pressed in Safari doesn't work

I'm trying to make a game map in HTML with Javascript. I want the map to move by holding the right mouse button and moving the mouse. In Firefox and Google Chrome this works correctly, but in Safari ...
2
votes
3answers
532 views

simulate mouse cursor move in c# between two coordinates

I am trying to move mouse programatically between two coordinates. But I want to maintain the speed reliably on all fast or slow processing machines. I saw this link here. But it doesn't gurantee me ...
2
votes
2answers
561 views

Javascript - Receive mousemove events from iframe, too

I have a javascript app, whichs adds a mousemove listener to the document. Problem: When the mouse is moved over an iframe, the function is NOT called. Is there a way to pass through such events to ...
2
votes
1answer
993 views

how to animate following the mouse in jquery

OK, this works perfectly fine for following my mouse. // $(document).mousemove(function(e){ $("#follower").css({ 'top': e.pageY + 'px'; 'left': e.pageX + 'px'; }); }); // And this ...
2
votes
1answer
763 views

pageY update onScroll

I'm trying to 'refresh' the pageY value at 'onscroll' event. I actually made it work by calculating where the mouse would be if the user scrolled (+-)X pixels. I'm sure there is sexier way of doing ...
2
votes
1answer
376 views

How can I move the TrackBar in response to mouse events in C#?

This is probably a n00b query. I have a need where I want to change the trackbar value based on a mouse down event. This I achieved as follows: private void MoveTrackBarToMouseClickLocation(TrackBar ...
2
votes
2answers
370 views

.NET - Detecting mouse movement through stubborn control

I am writing a C# Project that is relatively simple. Think "Public Web Terminal". Essentially there is a maximized form with a fill-docked web browser on it. The web browser control I am using is the ...
2
votes
1answer
346 views

How to use hover property simultaneously with jQuery's mousemove?

I have coded a simple div containing an image that follows the mouse cursor only when the mouse is present within the div using jQuery's mousemove property. It works great, except for I would like the ...
2
votes
1answer
203 views

$().mouseMove <— Empty selector in jQuery 1.4

The following bit of code breaks in the upgrade to jquery 1.4: $().mousemove( function (e) { defaults.mouseX = e.pageX; defaults.mouseY = e.pageY; }); }; What appeared to be a ...
2
votes
2answers
2k views

c# checked listbox MouseMove vs MouseHover event handler

I am using the following MouseMove event-handler to show the text-file content as a tooltip on CheckedListBox and there is a text-file object tagged to each checkedListBoxItem. private void ...
1
vote
1answer
28 views

.mousemove on IE8

What is wrong with .mousemove because wont to do noting on IE8. Must expand the disabled inputs with value > 20 characters. Only on IE8 is not working. And another thing, why isn't dragging back after ...
1
vote
1answer
23 views

How to implement that certain buttons appear for a while when I move the mouse and then dissaper if mouse is still?

I used MouseMove event to detect mouse movement, so I could change the visibility of my buttons. After the mouse has stopped moving, the buttons are still there, because I don't know how and where to ...
1
vote
2answers
43 views

How can I reduce slowdowns from mousemove event?

I'm running a relatively simple function (update a span's innerHTML) on mousemove. The application is a Leaflet map. When the mouse is moving, there is palpable lag when zooming, panning and loading ...
1
vote
2answers
48 views

image move with mouse move

using say jQuery, how do I have an image move with the mouse (or rather the cursor) i.e. such that the image is glued to the pointer; how do I later un-glue it, or swap the glued image. thanks
1
vote
1answer
72 views

Why is MouseMove event firing when left mouse is clicked only for MouseDown event?

Either I am not totally understanding how events work or Delphi Prism has gone mad!!! I have a winform, mousedown event and mousemove event. Whenever I click the left mouse button only, MouseDown ...
1
vote
0answers
111 views

How to add easing effect to “mousemove” gallery thumbnails

Before I try to explain it all, please view here what I am talking about. This is the thumbnail view of a gallery. On mouseenter it starts moving but without any smooth easing effect. I think that ...
1
vote
1answer
78 views

Replay mouse movement with javascript

I recently asked a question about mouse RECORDING. Now I need to figure out how to REPLAY it. Recent question: Record mouse movement with javascript I will use PHP to make an identical copy of the ...
1
vote
3answers
91 views

IE bind mousemove to body

I am trying to bind a mousemove event to the body. My attempts so far: $('html, body').mousemove(function(event){...}); $('html, body')[0].onmousemove= function(event){...}; ...
1
vote
1answer
45 views

Silverlight usercontrol movement with mouse

I am trying to create a control that allows capture of a still image from a streaming network cam. My idea is to stream the camera into a rectangle control, which I have functioning. I need to provide ...
1
vote
0answers
168 views

Win32 Api WM_MOUSEMOVE moving mouse quick

I have created a small window by win api. This window is a child to the window of another thread. I want allow user to move my window by moving mouse with presed right button. When I move my mouse in ...
1
vote
0answers
128 views

How to properly scroll an overflowing div based on mouse position within its container

I am working on a small jQuery plugin that autoscrolls through a set of overflowing elements within a container div based on the mouse position within that container div. See the Demo Here The idea ...
1
vote
0answers
54 views

Jquery - Safari won't register mousemove in plugin

Simply put, it works the first few times I test it, then without any change whatsoever to the code it stops. Here it's posted on jsFiddle it's not working at all on it but here's the link: ...

1 2 3