Tagged Questions
The onmousemove tag has no wiki summary.
6
votes
1answer
2k views
How can I use javascript timing to control on mouse stop and on mouse move events
So I have a control (a map) on an aspx page. I want to write some javascript to onload setup the following:
when mouse stops on control = some code
when mouse moves = some code (but only if the ...
4
votes
2answers
3k views
How do I change the mouse cursor when the left mouse button is down?
In Delphi 2007, in a mouse move event, I try to change the mouse cursor with:
procedure TFr_Board_Display.PaintBox_Proxy_BoardMouseMove(Sender: TObject;
Shift: TShiftState; X, Y: Integer);
begin
...
3
votes
2answers
461 views
Mouse cursor not changing if a pointer is not moved in Webkit-based browsers
Let's assume that we have simple jQuery code like the following:
var $document = $(document);
$document.ready(function() {
var $test = $("#test");
$document.keydown(function(e) {
...
3
votes
2answers
1k views
Why does OnMouseMove fire repeatedly when the mouse is not moving in D2010?
I'm porting a Delphi 5 app to D2010, and I've got a bit of a problem. On one form is a TImage component with an OnMouseMove event that's supposed to update a label whenever the mouse is moved over ...
3
votes
3answers
3k views
Anchoring a Windows Forms Tooltip to the mouse
I want to show a tooltip when hovering over a button and as long as the mouse is over the button the tooltip should follow the mouse. What is the correct way to achieve that?
When I add a MouseMove ...
2
votes
2answers
30 views
How to determine the direction on onmousemove event?
On some condition I want to cancel onmousemove event when mouse goes down, for example. Is it possible to determine the direction of onmousemove event? jQ or JS is Ok.
I have drag’n’drop elements. ...
2
votes
1answer
294 views
Hide a bunch of Divs after user inactivity
I'm using Paul Irish's idle-timer plugin available here : http://paulirish.com/2009/jquery-idletimer-plugin/ .
I want to hide some divs after 5 seconds of inactivity and show them back when user ...
2
votes
1answer
94 views
Detecting the last time the user clicked/moved/typed/anything
I have a Windows vb.net project that does an occasional "auto refresh" based on a 20 minute timer. I want to avoid any type of auto-refresh... if the user has manually had any interaction with the ...
2
votes
2answers
344 views
JavaScript: onMouseOver Event Not Working Properly With Other Events
I have a HTML webpage that contains a 15x15 table and I also have a small square div that follows the mouse when you press and hold the left mouse button on the div.
I have assigned an onmouseover ...
2
votes
2answers
4k views
onMouseMove get mouse position
In javascript, within the javascript event hander for onMouseMove how do I get the mouse position in x, y corrdinates relative to the top of the page?
2
votes
1answer
1k views
jquery plugins: Tooltip plugin using live()
I need a tooltip plugin that depends on live() method instead of normal hoever and mousemove
2
votes
3answers
938 views
How to determine if mouse is moving clockwise or counterclockwise?
I have an MFC appplication where the user have to move the mouse around a circle circonference with a dragging mouvement. I need to retrieve the number of degrees during this mouse drag "rotation" and ...
2
votes
2answers
3k views
WPF MouseMove Event Polling
I've created a WPF application where the title bar and chrome are turned off. I have a border around the entire app, with the idea that it would act like the chrome in some regards. The first thing ...
1
vote
1answer
80 views
Mouse on left of screen move image to left, same when mouse on right of screen
I'm trying to get an image that is around 1920x1200px to pan around on a 800x600px browser window.
So if my mouse is on the top-left of the browser window the image is alined so it's top-left margins ...
1
vote
1answer
629 views
Flash AS3/Mouse position between startDrag and stopDrag
I have a 'drag item' and some 'drop target' so I want to highlight drop target while 'drag item' is dragging so need to track mouse position or listen the mouse move event. I try subscribe ENTER_FRAME ...
1
vote
2answers
486 views
Detect mousemove when over an iframe?
I have an iframe that takes up the entire window (100% wide, 100% high), and I need the main window to be able to detect when the mouse has been moved.
Already tried an onMouseMove attribute on the ...
1
vote
4answers
339 views
<input type='textarea' onmousemove='toscheck()' /> isn't working only on Firefox
For some reason, this code works all chrome, safari, and ei but not on firefox.
<script type="text/javascript">
function toscheck(){
if(tos.scrollTop+540 > ...
1
vote
3answers
527 views
JavaScript onmousemove show div and follow mouse
I have a list of customer records (tr in a table) in my app.
When the user hovers their mouse over a record (tr), I want to show a div which hovers over the other records and shows more detailed ...
1
vote
1answer
447 views
image rollover effect in jquery?
here my code-
$('.smenu li').mouseover( function(){
var src = $(this).find('a').attr('href');
$('.hbg').css('background-image', 'url(' + src + ')');
});
html code-
<div ...
1
vote
1answer
169 views
Greasemonkey onmousemove script
I have a UserScript which should remove all images of a certain class on the first mousemove-event.
Being pretty new in writing Greasemonkey-scripts, okay this is my first script, I think there is ...
1
vote
2answers
1k views
document.onmousemove / onmmouseup prevent selecting text in IE input or textarea
whenever i alter the onmousemove or onmouseup attributes of the document, for example:
document.onmousemove = myOnMouseMove;
document.onmouseup = myOnMouseUp;
It prevents me from selecting ...
1
vote
3answers
3k views
dojo - mouse(x, y) - drag and drop - frustration
I'm attempting to drag an object using dojo.dnd but want the avatar to be in the same position as the object was (relative to the mouse)
i.e. if a person clicks in the middle of the object then the ...
1
vote
1answer
2k views
What is the best way to get mouse position over form?
I want the best way to get mouse position for Form.
I,m now set the values of mouse position in variables to get them in another methods "Like Form1_Click".
Is there any better way to do that??.
...
1
vote
2answers
1k views
How do I detect if a mouse / finger is moving along a certain path?
I'm developing an application for iPhone, and I want to detect when the user is moving his finger along a certain path.
Specifically, I want to detect when the user moves their finger along a ...
1
vote
5answers
2k views
Snap to grid mouse locking up
I am working on an application which draws a simple dot grid. I would like the mouse to snap between the points on the grid, eventually to draw lines on the grid.
I have a method which takes in the ...
1
vote
1answer
2k views
Can WPF User Control Detect MouseMovement when Mouse outside of UC Area
I'm writing a WPF app whereby usercontrols are being dynamically created programmatically in response to an event. The main window canvas has a grid, and i'm adding new columndefs and rowdefs, which ...
1
vote
5answers
5k views
How to Show Ballon tooltip when mouse stops
[edit]
So I used one of the javascript tooltips suggested below. I got the tips to show when you stop and hide if you move. The only problem is it works when I do this:
document.onmousemove = ...
0
votes
2answers
156 views
A tooltip or something similar move with cursor in wpf
Is it possible to move a Tooltip or something like that with cursor when mouse goes on a specific control?
I tried TextBlock, but Margin property not work.
private TextBlock tooltip = new ...
0
votes
1answer
87 views
How to make the ToolTip follow the mouse?
I want the ToolTip to follow my mouse moving over one control. For example, let's take a panel. When mouse location is inside the Rectangle(100, 100, 50, 50) I want ToolTip to be visible and always on ...
0
votes
1answer
118 views
LeftMouse + OnMouseMove = Laggy in chrome
I need help for another problem with my Pixel-Editor: http://toolhub.net/pixel/
When you draw really fast in Chrome, you won't have a constant drawing line.
In Firefox 6 + IE 9 its fine.
The problem ...
0
votes
0answers
174 views
lightbox clone moving 100% zoomed image on mousemove
Before reading my question please check this link to see flash version what I'm looking for
http://issuu.com/palsmag/docs/april2011
Click on issue to read it and click again to make it 100%. On mouse ...
0
votes
0answers
163 views
[Wired GUI feature?]If TrackMouseEvent() is called within CListCtrl::OnMouseMove, hover above ListCtrl will make a selection!
This is not sth wrong with the mouse device. This seems sth wrong with TrackMouseEvent.
Steps to reproduce:
Use vc2005 to create MFC dialog application. Add a ListCtrl item.
Use "Add class" to add ...
0
votes
1answer
405 views
Javascript 'evt is undefined' but works in Chrome
function ganttChart(gContainerID) {
this.gContainer = document.getElementById(gContainerID);
this.gCurrentMouseX;
this.gCurrentMouseY;
this.gAttatchMove = function(self) {
...
0
votes
1answer
1k views
How to determine value of DbGrid cell during OnMouseMove event
I have OnMouseMove event, during which I want to find a value of certain cell (not neccesarily the one under the mouse). Basically the question is:
How to access cell data using its x and y ...
0
votes
1answer
104 views
javascript get text at mose postion
How can I get text at mouse position?
I have now some like this
document.body.onmousemove = function(){
//todo:Get text at mouse position
}
0
votes
1answer
679 views
jquery map mousemove
Hi
I have made a map qith juqery, which is split up in many regions, and which uses the map cordinates to make hover areas. On hover a tooltip appears for every region. Everything works great, but ...
0
votes
3answers
649 views
OnmouseMove not work with SetTimeOut and Alerts in Chome
What's wrong with this code? It works in IE and FireFox, but Chrome does not work.
The idea is that the function fnTimeOut will be triggered in 5 seconds after onmousemove (fnTimeOut was attach in ...
0
votes
2answers
1k views
See if left mouse button is held down onmousemoveenvent
How do I detect if the left mouse button is being held down in the OnMouseMove event for a control?
0
votes
1answer
464 views
Can't change this javascript to read less for height than width on mousemove
So I'm trying to set up this jQuery CSS dock menu and you can enter in a proximity in the setup. The proximity determines when the zoom will be triggered, but you only get to put in one distance -- ...
0
votes
3answers
2k views
How to track cursor position efficiently in Java?
The effect I've been trying to create is that the mouse cursor icon changes whenever the mouse enters a certain zone on a JPanel, and switches to default whenever it leaves the zone. I'm using the ...
0
votes
1answer
3k views
image change on onmouseover, onmouseout, onclick events
I have a two iamges say, img1 and img2.
My Code :
<div id="JourneyReport" style="display:none;" class="divbackground">
<uc1:ReportControl ID="JourneyControl" ...
0
votes
3answers
9k views
Move a PictureBox with mouse
I'm developing an app for windows mobile (Compact Framework 2.0). It has a wimforms with a pictureBox.
I want to move the image of the pictureBox but I don't know how to do it so I choose to move the ...