Tagged Questions

A general tag for user-interface events that are generated by the mouse. This includes pressing/releasing a button, clicking (including double/triple-clicks), moving, dragging, etc.

learn more… | top users | synonyms

15
votes
4answers
10k views

Capturing Mouse Events from every component on C# WInForm

I have a problem with MouseEvents on my WinForm C# application. I want to get ALL mouse clicks on my application, but I don't want to put a listener in every child component neither use Windows mouse ...
12
votes
6answers
713 views

MouseDoubleClick events don't bubble

My scenario, simplified: I have a ListView containing rows of Employees, and in each Employee row, there are buttons "Increase" and "Decrease" adjusting his salary. Pretend that in my program, ...
12
votes
2answers
1k views

Prevent Window Focus Change

I'm trying to help a disabled person with a small bit of code to help him play a game easier. He is limited to a trackball and a single button. Currently he uses the onscreen keyboard and has managed ...
10
votes
1answer
956 views

WPF: Ignore mouse clicks on overlay/adorner, but handle MouseEnter event

What I really want is a version of IsHitTestVisible that ignores mouse click events but still traps mouse enter and leave events. Background: An informational overlay pops up under the control with ...
9
votes
3answers
107 views

Differentiate between mouse and keyboard triggering onclick

I need to find a way to determine if a link has been activated via a mouse click or a keypress. <a href="" onclick="submitData(event, '2011-07-04')">Save</a> The idea is that if they ...
8
votes
3answers
119 views

Which mouse button is the middle one?

I'm currently developing a program in java where a certain event must be triggered only when the user clicks with both the left and the right click on a button. Since it is a little unconventional, I ...
8
votes
3answers
819 views

How can I listen for a mouse event in Python on Mac?

I need to listen for global mouse events(not bound to an app) on my Mac in an app written in Python. I'm using PyObjC, but I can't figure out how to do it. Plain ObjC examples or other Python ...
8
votes
7answers
16k views

Detect Mouse leave stage while dragging in Actionscript 3

Event.MOUSE_LEAVE is great in Actionscript 3, but it doesn't seem to fire if the user is holding their left (or right for that matter) mouse button down. Is there a way to detect if the mouse leaves ...
7
votes
3answers
222 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); }); ...
7
votes
4answers
857 views

What is the best way to simulate a Click with MouseUp & MouseDown events or otherwise?

In WPF most controls have MouseUp and MouseDown events (and the mouse-button-specific variations) but not a simple Click event that can be used right away. If you want to have a click-like behaviour ...
7
votes
3answers
1k views

Move active element loses mouseout event in internet explorer

In a library I am using I have the task of moving an element to the front of the dom when it is hovered over. (I make it bigger so I need to see it, then shrink it back when mouse out). The library I ...
7
votes
3answers
129 views

Is it possible to work out where in a p's text a mouse click event occurred?

I have a <p> containing text. When the <p> is clicked on, I create a <textarea> containing the text from the <p>. Is it possible to calculate where in the <p>'s text ...
7
votes
4answers
7k views

WPF Change style of surrounding border on mouse over

I have a Grid with a Border around it. Upon mouse over on the Grid, I want to change the style on the Border. How would I go about doing this? This is what I've tried, without any success so far: ...
6
votes
1answer
254 views

How do I add an OnClick event to TCustomControl?

How do I create OnClick event? I need help with TCustomControl.
6
votes
3answers
2k views

An “if mouseover” or a “do while mouseover” in JavaScript/jQuery

Is there a JavaScript or jQuery solution to run a function repeatedly (after setTimeout) while the mouse is over a DOM object? Otherwise said, is there a JavaScript "do while mouseover" (or "if ...
6
votes
4answers
1k views

Possible? — A div overlay which is completely ignored by mouse events (so that mouse events effect only the div below)

I have a google map in an iframe and wrapped in a div. Above that div, i have another, which serves to create a recessed shadow effect. The problem is that this overlayed div will take priority of ...
6
votes
6answers
2k views

MouseEnter and MouseLeave events from a Panel and its child controls

I have a Panel that contains child controls. If i handling the Panel's MouseEnter and MouseLeave events, and his child's MouseEnter and MouseLeave events, here is the order of raising: ...
6
votes
1answer
450 views

How to send keyboard and mouse commands to the underlying operating system using Ruby?

Is there an operating system neutral way for Ruby to send keyboard and mouse events to the underlying operating system? One obvious (to me) approach is to use the Ruby/Java bindings and use ...
5
votes
1answer
82 views

jQuery draggable : the draggable box go over the container - bug?

Try this code : HTML <div class="draggable_container"> <div id="draggable_1" class="draggable"> <div class="exp"><!-- --></div> </div> ...
5
votes
5answers
274 views

Is it possible to SIMULATE a mouse click using a mouse down and up events?

A previous question has gotten me thinking. Is it possible to simulate a MouseEvent.CLICK to get fired by just firing first a MOUSE_DOWN followed by a MOUSE_UP. As per Adobe's doumentation. "... For ...
5
votes
2answers
160 views

How can I constrain locators to a limited (but not regular) set of positions?

In Mathematica, locators can be constrained to certain screen regions via the parameters of LocatorPane (See LocatorPane documentation.) A list of three ordered pairs {{{minX, minY}, {maxX, maxY}, ...
5
votes
2answers
3k views

jQuery get mouse position within an element

I was hoping to craft a control where a user could click inside a div, then drag the mouse, then let up on the mouse in order to indicate how long they want something to be. (This is for a calendar ...
5
votes
3answers
371 views

jQuery: ajax event

OK here is my code $("#content_Div").ajaxStart(function () { $(this).css('cursor', 'wait') }).ajaxComplete(function () { $(this).css('cursor', 'default') }); this is a fairly simple ...
4
votes
1answer
45 views

Java mouse events ignored when mouse is moving?

I've been working on a 2d game in java recently, and am currently trying to get the event-handling system working right. I was trying to get a mouse click to start an animation, and it worked until I ...
4
votes
2answers
136 views

Attempting to Simulate Mouse Click / Drag

So I'm trying to simulate the left mouse click and the left mouse release to do some automated dragging and dropping. It's currently in a C# Winforms (Yes, winforms :|) and is being a bit of a goose. ...
4
votes
2answers
119 views

Why Paste Event in jquery fires on pre-paste?

Hi allI am trying to make textbox similar to the Twitter, for this i have written code for Word CountUsed Events Change, Keyup and PasteKeyup and Change Events are working fine but paste event is ...
4
votes
1answer
47 views

Reliable “mouseenter” without jQuery

I've been looking everywhere and I can't seem to find a reliable mouseenter event. The closest I found was: mouseenter without JQuery function contains(container, maybe) { return ...
4
votes
1answer
87 views

How to prevent Jquery mouseover event from executing on moving mouse on transperent image area?

I have used code described on below mentioned SO answer Change the image source using jQuery to change image on mouse over. $(function() { $("img") .mouseover(function() { var src = ...
4
votes
3answers
115 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
2answers
125 views

Make JLabel backround transparent AGAIN

I have a JLabel that changes its background color when the mouse enters it. The problem I have is that I want the JLabel to become transparent after the mouse exits. Isn't there perhaps just a ...
4
votes
2answers
83 views

jQuery sending mouseevents down the z-axis

Is it possible to send a mousevent down a z-axis? For example, an element has been absolutely positioned on the site above another element. I would like the element below to get the mouseover event ...
4
votes
5answers
172 views

Comparing methods of binding mouseleave event along with a mouseenter event in jQuery

I want to trigger an event when my mouse enters a div, and a separate event when it leaves the div using jQuery. I know there are plenty of plugins, code samples, etc. that solve this particular ...
4
votes
1answer
264 views

Global mouse events

Hallo, I am trying to keep track of the mouse position and also its delta position. Is there any nicer way of doing this then implementing all the mouse events for all my forms in my window? The ...
4
votes
3answers
274 views

Can I place the mouse event handler on a separate thread?

Can I put a thread on a mouse event handler? Calls_Calls.MouseUp += new MouseEventHandler(Calls_Calls_MouseUp); How to add a thread over this?
4
votes
3answers
334 views

Using Mono to Click the Mouse in C# - Mac OS

I have written an application (wpf - will Mono translate this for a Mac?) that I wish to somehow port across to Mac OS X. This application involves using user32.dll to perform a mouse click (something ...
4
votes
2answers
379 views

custom button MouseLeave event

I made a custom button with some panels and pictureboxes. With the MouseEnter and MouseLeave I set the appropriate hover images like normal buttons. The problem is that if I move the mouse too fast ...
4
votes
2answers
2k views

WPF/MVVM - how to handle double-click on TreeViewItems in the ViewModel?

(Note - this is a re-post as my first question got posted under wrong headline: Here Sorry!) I have a standard WPF treeview and have bound items to view model classes. I now wish to handle behaviour ...
4
votes
1answer
352 views

jQuery - fire mouse event even when another element is on top

I have a jQuery mouseup event set on the background element that is blue with dotted lines (thats a background image, not elements). It only fires if one of the other elements is not laid on top. I ...
4
votes
7answers
2k views

C# how to loop while mouse button is held down

Can you point me in the right direction? I'm trying to get a loop to trigger while the form button is depressed. //pseudocode While (button1 is pressed) value1 += 1 And then of course stop looping ...
4
votes
3answers
191 views

How do I implement a double-right-click for winforms?

This question seems to point to the existence of a windows event for a double-right-click. How to implement it in a C# windows form, however, is less than clear. What's the best way to implement ...
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 ...
4
votes
2answers
2k views

Simulate a click by using x,y coordinates? - Javascript

is it possible to use coordinates in order to simulate a click? Or is this technically impossible? :O I'm using Javascript within a webpage. Help would be great, and also quite interesting!!! =)
4
votes
1answer
425 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
2answers
687 views

Mouse tracking daemon

I need to write something using Cocoa to surface raw mouse movement data. Optimally, the app would just be a little daemon that would run, passing the data to a socket server which another ...
4
votes
1answer
1k views

Safari iphone/ipad “mouse hover” on new link after prior one is replaced with javascript

After you click a link on the iphone or ipad, it leaves a simulated mouse hover that triggers the a:hover css styling on that link. If the link has a javascript handler that keeps you on same page, ...
4
votes
4answers
179 views

MouseMotion Sensor Method Call

I have encountered a problem, for which no matter how long I study the API's of the class and superclasses, I can not figure out. Suppose I wish to design a sort of a game where the mouse motion ...
4
votes
2answers
398 views

are scala's mouse events working? how?

I'm trying to create link-like label in scala. But no mouse events works for me. How are they supposed to work? class Hyperlink extends Label{ text = "hyperlink" reactions += { case ...
4
votes
1answer
820 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 ...
4
votes
2answers
3k views

as3 mouseEnabled still a problem for me

A couple years in now, there's still something about mouseEnabled I'm not getting. I have a Sprite (for example here "Sky", that contains many objects, one of them is a Cloud, which I do not want to ...
4
votes
5answers
1k views

Emacs font sizing with Ctrl key and mouse scroll

notepad++ allow me to increase the font size when I hold the Ctrl Key and rotate the mouse middle scroll button to forward. In the same way, the when I hold Ctrl and rotate the mouse middle scroll ...

1 2 3 4 5 18