Top "Mouseevent" questions

A general tag for user-interface events that are generated by the mouse.

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 …

javascript jquery mouseevent onmousemove
HTML content only scrolls with scrollbar, not mouse wheel

I have a <div> on my page with a fixed height, and overflow-y: scroll; set so that the …

css scroll overflow mouseevent mousewheel
Drag and Resize undecorated JFrame

Currently, I am using the following code to drag and move my undecordated JFrames. private void initialiseGUI(Component component){ //<…

java swing jframe mouseevent mouse-listeners
wpf tooltip on mouseover and mouseout

What I am trying to do is have the tool tip show once a mouse over occurs. The ToolTip will …

wpf tooltip mouseevent
MouseListener for JPanel missing mouseClicked events

I have a JPanel that I have created a MouseListener for and I am seeing some behavior that I can't …

swing event-handling mouseevent jpanel
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 …

java swing mouse mouseevent mouselistener
Make JLabel background transparent again

I have a JLabel that changes its background color when the mouse enters it. The problem I have is that …

java swing transparency mouseevent jlabel
WPF StackPanel with Click AND DoubleClick

I need to be able to handle the double click and single click event on the WPF StackPanel. But there …

wpf click mouseevent stackpanel
how to implement mousemove while mouseDown pressed js

I have to implement mouse move event only when mouse down is pressed. I need to execute "OK Moved" only …

javascript jquery mouseevent mousemove mousedown
Stopping propagation of mousedown/mouseup from a click handler

Here's a DEMO. I have two divs, an inner and an outer: <div id="outer"> <div id="…

javascript jquery mouseevent