Questions tagged [mousemove]

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

Mousemove is an event that fires when the user moves the mouse owithin the element you registered the event on.

961 questions
-2
votes
1 answer

Limit mousemove event

how can i limit the mousemove event to a certain area, let's say a div in the middle of the page? Thanks in advance if (window.screen.width > 765) if (matchMedia('(pointer:fine)').matches) $(document).ready(function() { $(this).on("mousemove",…
baalstorm
  • 3
  • 2
-2
votes
1 answer

How to click the mouse at certain coordinates on the form in Delphi?

How to click the mouse at certain coordinates on the form in Delphi? How I understand first of all need to get coordinates of screen?
-2
votes
2 answers

jquery mousemove() - how to change cursor?

i am using the mousemove() function. I've noticed it changes the mouse cursor to 'move' icon. Is there a way to replace this with a custom image? i have tried this but it doesn't work. $("#main").mousemove(function(e) { $('#main').css('cursor:…
Martin
  • 31
  • 5
-2
votes
1 answer

jQuery detect dragging left or right

I've been looking about the mousemove() and mousedown() methods on the docs @ jQuery's official but didn't managed to come up with a simple solution to listen and do something when the mouse-dragging left/right event happens. Thank you!
Julian Abal
  • 49
  • 2
  • 8
-2
votes
1 answer

How to make a mousemove event for multiple labels with one sub procedure?

I have the following code for a project I'm working in class and I need to copy it about 9 times in total. the only thing that will change each time is the category number and the label name by 1. Do I HAVE to create a mousemove event inidividually…
user1486297
  • 43
  • 1
  • 6
-2
votes
1 answer

How to handle mouse moving

I need to handle mouse moving. I overrided function void MouseMoveEvent(QMouseEvent *event) And it works only when mouse button is pressed.
Ufx
  • 2,595
  • 12
  • 44
  • 83
-2
votes
1 answer

How to simulate mouse movement in selenium using java

I have a requirement that when a certain automation script is run, the browser should show the cursor moving from one field to another as the script moves ahead. I am not sure about what exactly I need to do to get it done. I used the Action class…
user3300977
  • 1
  • 1
  • 2
-2
votes
1 answer

jQuery mousemove doesn't get fired?

Here's a Codepen http://cdpn.io/CnwtL I'm trying to mimic/improve the mouse move based scroll that you can find here: http://www.ciena.com/resources/posters/Packet-Optical-Convergence-Infographic.html (you have to click for the infographic to see…
coulbourne
  • 489
  • 1
  • 8
  • 16
-3
votes
1 answer

How to check that window.pageX is increasing or decreasing in js?

window.addEventListener('mousemove', function(){ if(magic happens){ console.log("yes pageX is increasing"); } else{ console.log("no pageX is decreasing"); } }); what is that magic bro plzz tell me?? what is wrong…
Nawab Ali
  • 176
  • 2
  • 7
-3
votes
1 answer

If mouse movement detected, show cursor in a dialog window C++ MFC

The program written in C++ MFC has a Dialog Window which plays a full screen video and the cursor is hidden. I want to display the cursor when there is movement in mouse (video is playing in background) Cursor disappears when the mouse is inactive…
mrudulaw
  • 15
  • 1
  • 4
-3
votes
1 answer

Selenium webdriver-simulate user event of selecting words in online word search game

I want to simulate a real life scenario of selecting words in wordsearch online games. example word needs to be find is "School",,then I will click on the letter S and move towards rightside where letters C H O O L is present,On selecting/finding…
-3
votes
1 answer

c# Move mouse in the infinite world

I started to write a dynamic balancing software and the mouse that I want to move infinitely will be acting as a sensor to read the revolutions of the motor shaft. Basically I'll point the laser to the motor shaft and while the shaft is spinning the…
Suat
  • 11
  • 2
-3
votes
2 answers

Mousemove event is causing infinite loop even after mousemovement has stopped

Here's the page in question: http://yac-web.com/clients/dessert/ I am trying to set up an effect that happens while the mouse is being moved and stops when it's not. For some reason the event starts fine but then just keeps looping. I am not super…
-3
votes
1 answer

How to cntrol mouse pointer with Matlab or C?

I need to run a C or Matlab program at the bottom of windows running programs to move mouse, like using image processing to move mouse pointer. how can i move mouse with a set of codes and how can i click right and left???
Alex
  • 177
  • 1
  • 4
  • 10
-6
votes
1 answer

MouseMove doesn't seem to work

I made a (working) auto clicker and I wanted to add a little modification to it. I want the code to grab the mouse's current position when you call the AutoClick function. Now when it calls the ClickClick function it gets the now current position of…
1 2 3
63
64