For issues relating to setting up, subscribing to, or handling mouse events such as mouseenter, mouseleave, mousemove, mousedown, etc.

learn more… | top users | synonyms

0
votes
0answers
24 views

Only Keyboard event not mouse events

I have created event for KeyDown which also triggers the mouse event. I dont want the mouse event. What can i do. Here is my sample code, private void Form1_KeyDown(object sender, KeyEventArgs e) { ...
0
votes
0answers
7 views

AS3.0 Check for MouseEvent.CLICK in a given amount of time, otherwise gotoandplay(0)

I'm having a brain meltdown. I'm creating a presentation in which I want the program to check if the user clicks in the entire stage. If there hasn't been clicked in lets say 10 minutes, I need the ...
0
votes
1answer
25 views

MouseEvent.MOUSE_WHEEL stop working inside a MovieClip child

Good morning everyone, how are you?   Onve again I am here sharing my questions and learning more and more with you. I hope that somehow we can exchange information and expand our knowledge.   Guys, ...
0
votes
1answer
39 views

Synaptics Touchpad Signature

I want to use the Synaptics SDK to use the Touchpad to capture a signature. I am trying to capture the absolute X and Y positions of the touch so that I can track people lifting their finger and ...
1
vote
1answer
56 views

How do I create a fade-out transition with a WPF border on mouse hover?

I am trying to create a Border that shows/hides the border itself on hover. The desired effect is to show a border around content on hover and when the mouse leaves the area, the border fades out. I ...
1
vote
0answers
46 views

Chrome is firing 'Ctrl+C' keydown and keyup events when selecting text

I am dealing with keyboard events, and find that Google chrome will fire keydown and keyup events when I drag the mouse on the page to select some text. The wrongly fired events have keycodes of 17 ...
2
votes
2answers
53 views

apply parent's hover to jquery ui autocomplete child

I'm in a similar situation a my other problem prevent datepicker from triggering parent mouseleave, but that solution doesn't seem to apply to jQuery UI autocomplete. How can the hover also apply to ...
-1
votes
1answer
43 views

MouseDoubleClick Event runs multiple times [closed]

I'm writing an app, where I want method to be triggered by double click into DataGridView. This double click opens new dialog window, where another input from user is demanded. Everything works ...
0
votes
1answer
52 views

Event issue when embed cocoa webview to QT application

I intend to replace QT webkit with OSX native webkit in a QT based application, what I did right now is making an QT control inherited from QMacCocoaViewContainer and embed a cocoa web view in it. It ...
0
votes
0answers
68 views

How to disable/change a left-click selection on JTable

I want to create a Jtable that works like in Total Comander - a row should get a dotted border after left-click selection and it should be selected after right-click. So far I used MouseAdapter and I ...
2
votes
0answers
47 views

How to get accurate Java Swing mouse events on a Microsoft pen device?

Has anyone found a solution to timing of Java Swing mouse events on a Surface Pro or other Microsoft Wacom pen platform? The goal is to create responsive pen stroke input in a draw type application, ...
0
votes
4answers
189 views

How can I disable the mouse click on the button action event?

Is there a way I can disable mouse click ? In the panel there are different components and for some of the Button Click events, I want to disable the mouse click. I mean the click of the mouse doesn't ...
0
votes
1answer
40 views

jtextarea mouse event overriding containers mouse event

here is my problem: i have a jpanel that has three panels in it. a verticalseperator panel, a chatouput panel and a chatinput panel. the main jpanel, chatpanel, implements mousemotionlistener, and has ...
0
votes
0answers
22 views

how do i determine which version of the Chrome browser will incorporate webkit bug fix #25811?

Pretty much says it all in the title. Webkit bug #25811 was fixed in Feb, now it is April. I'm wondering how i determine when that fix might make it to a general Chrome release. It has a significant ...
0
votes
0answers
32 views

Background color of JFrame with JPanel?

How do I use MouseEvents to be able to click on the screen, create a point (circle on the JFrame) of random color, and continue with that color until the user "completes" the polygon with a right ...
0
votes
1answer
32 views

Intercept event with modal-like MessageBox

I created my own, but not yet fully working, modal-dialog. But I'm having a problem in getting the result like what the MessageBox does. I don't have any knowledge regarding Events (Routed etc..). ...
1
vote
1answer
145 views

Mouse OnDrag event on GDI graphics object

I have a simple question about mouse events. I have a WinForms application and I used the GDI+ graphics object to draw simple shape, a circle. Now what I want to do is to drag this shape with the ...
0
votes
2answers
93 views

Edit User information by jtable

I have a jtable that show a text file contain on own. Each line in text file is a user record. I add a edit button to edit each selected row on table. I use this code, But i don't understand how to do ...
0
votes
1answer
41 views

JComponent not registering

So I have the following class. I have over-simplified the code, as putting 500+ lines of code is not an option. It is basically a very fancy square: public class ModuleGui extends JComponent ...
0
votes
0answers
54 views

cancel mouseup event on mousedown

I am calling a mouseDown event on a bing maps pin but it also triggers the mouseUp event of the map which caused two set of code to be executed therefore showing a weird behavior. How can I disable ...
0
votes
0answers
86 views

Raphael js problems with mouse events in Safari

working with Raphael library, I've a lot of problems with mouse events in Safari (it just doesn't work on mouse events). I read it's common, and maybe there is a solution for this (from the ...
0
votes
1answer
332 views

JqPlot EnhancedLegendRenderer with Mouse events

I am using JqPlot to display some graph legends on the jqplotMouseEnter, and jqplotMouseLeave events. Here is my code: $('#FinancialsLineGraph').bind('jqplotMouseEnter', function(ev, ...
0
votes
0answers
132 views

Silverlight Toolkit ListboxDragDropTarget with a custom Listbox template misinterpreting click as drag

I have a silverlight app with a Listbox. The listbox already was styled to use custom items. The list box is wrapped in a toolkit:ListBoxDragDropTarget. <toolkit:ListBoxDragDropTarget ...
1
vote
1answer
169 views

Simulate Mouseclick-Events on a jailbroken device via cycript

I'm interested in the iOS-Tweak "MouseSupport" Source Code (Repo) from Matthias Ringwald. Does anybody know how to use it? I would like to simulate Mouseclick-Events while being hooked up at ...
0
votes
1answer
61 views

Why isn't this click event being fired?

Why isn't the myMouseClick event being fired? myMC:TestMC = new TestMC(); myMC.addEventListener(MouseEvent.CLICK, myMouseClick); addChild(myMC); function myMouseClick(e:MouseEvent):void { ...
2
votes
4answers
94 views

Launch onclick/onmousedown ONLY with LMB

Well alright, I tried to search around the internet and didn't find how to do this. Everything I find is only to disable the context menu on right click. The point is : I am (Trying to) making a ...
2
votes
2answers
142 views

How do I add things to the system tray and add mouseOver() functionality?

Sorry if the title was vague but this is what I am trying to implement. This is Battery Care software iconified / minimized. When you mouse over the icon, you get the window you see in the picture. ...
1
vote
2answers
71 views

Are verbose MouseListener implementations worth the overhead? [closed]

Consider the MouseListener below. My question is this: is having the extra features that this listener provides, some of which you won't need, worth the memory and processing overhead that comes with ...
0
votes
1answer
105 views

DropDownList control right-click event

I have a dropdownlist control in my MFC dialog. TIn it will be a list with almost all Windows Messages. Being so many, the user will find them harder. So I want that when the user right-clicks the ...
7
votes
2answers
450 views

KeyPressed and mousePressed Event in an unfocused Component

What are several ways of detecting a key stroke without the need of focusing on the component that the event was implemented? Here's my idea on this: Even without focusing on myComponent, upon ...
0
votes
1answer
136 views

Dynamic event handling - not firing

I'm having issues with dynamically handling the MouseUp event. Test code with issue: WPF: <Window x:Class="WpfApplication1.MainWindow" ...
2
votes
1answer
77 views

SVG shapes added to Raphael group fire events as if separate

Imagine this: 2 concentric circles, with the smaller one over the larger one so that both are visible both are added to a Raphael group (set) the group has mouseout and mouseover event handlers ...
0
votes
2answers
78 views

How to ignore the mouse events except the last one in Eclipse RCP

See below for code sample, the method handleMouseDoubleClick method will take seconds to run and open another layout screen containing buttons and links. End users may click many times on one listed ...
1
vote
1answer
94 views

Stopping Browser Event Bubbling from a custom “Header” class to its GWT DataGrid/ListHandler

I'm creating a custom implementation of the GWT Header<String> class for use on a DataGrid Column that also uses a ListHandler to sort the data in this column. I'm attempting to handle and ...
0
votes
1answer
62 views

Why doesn't my JPanel hear mouse changes when inside a JTable?

Here is a simple example of the inner JPanels of my JTable not being notified when a mouse enters / exits. Why? import java.awt.Color; import java.awt.Component; import java.awt.Font; import ...
10
votes
5answers
1k views

How can you make CSS on-hover content stay in place when you click or stop hovering using Javascript?

I have a body system feature I'd like to implement. When the user hovers over a body part, it highlights and shows information on that specific body part. I've coded the CSS the way I want it, but I ...
3
votes
1answer
89 views

AS3 - Restricting Number of Mouse Clicks

I'm new to Programming! Never mind AS3 and have problem when trying to set a specific number of Clicks to an Array of MovieClips. This might not sound correct so I will let you know exactly what I'm ...
0
votes
1answer
45 views

Retrive clicked component from a panel-drawed composite tree

I have a composite tree. I've drawn this tree to a JPanel width Graphics object via overriding paintComponent(Graphics gr). My problem is: how can I access which component is clicked? I only figured ...
0
votes
3answers
322 views

How to listen to mouse move-events while mouse button is pressed in Java

I have a problem with mouse events in my program. I'm trying to code a drawing program with a canvas. The user should draw if he left-clicks and moves the mouse. So I defined a class Drawer with a ...
0
votes
2answers
164 views

getCursor() doesn't work in my actionListener

So I am just putting the last details of my assignment in and I noticed the getCursor(); works when I run my program, but later in the program (in the two actionListeners) it doesn't teturn to the ...
0
votes
1answer
286 views

Simulating mouse events and keyboard events c++ linux

i need to simulate some mouse events and keyboard events for my project and having trouble finding much information about the same. I tried out the original X11 code for simulating mouse which i got ...
4
votes
3answers
112 views

onmouseover for the last of several generated divs will not work in IE

I have a javascript function: function addTool(id, text, tool, pic) { var container = getById('infobox'); var origimg = getById('tempimg').src; container.innerHTML += "<div id='" + id + ...
1
vote
1answer
97 views

Onclick event handler by window.onload doesn't trigger

I want to call the function "details" when an element with the class "link" is clicked. This code doesn't work: window.onload = function () { document.getElementById("link").onclick = details; } ...
0
votes
0answers
46 views

How to catch mouse click events onto POI points of a map?

I wrote a GM javascript (setting a marker, calculating LatLng, address, etc.) when the user clicks by mouse onto the map (by 'google.maps.event.addListener') to show a locality. But this does NOT ...
2
votes
1answer
327 views

Why would MouseEvent.getButton() return NO_BUTTON?

I have code similar to the following: JComponent component = ... component.addMouseListener(new MouseAdapter() { @Override public void mouseClicked(MouseEvent e) { final int button = ...
-1
votes
1answer
127 views

jquery mouseleave trigger when over a a href link

I have a div menu to show up and on mouseleave the div, it hides itself. The problem is I have href links in the menu div and when the mouse is over the link, mouseleave is trigger. It's not the ...
0
votes
3answers
537 views

How to find location of JTree node on screen

I want to search a particular node of JTree and determine its location on screen. My aim is to start hovering mouse from the top left corner of that node and perform a mouse click in my JFC. Can ...
4
votes
2answers
227 views

How to detect if mouse is moving when mouseup is fired?

I've tried to implement a page panorate by dragging. In my implementation the page moves for a while after user has released the mouse button, like dragging maps in Google Maps. Now I'd like to ...
0
votes
1answer
801 views

Pygame action when mouse 'click' on .rect?

I have been writing a test function to learn how a mouse 'click' action on a pygame.rect will result in a reponse. So far: def test(): pygame.init() screen = ...
2
votes
0answers
32 views

Overlapped panels

We are creating an interactive graphical model in java using swing. We model is represented as nodes (shape objects) and links (arrow lines). We draw the shapes (with listeners) on jpanels and we ...

1 2 3