0
votes
1answer
31 views
+100
Mouse events on an SWT Scrollbar
Using standalone SWT Scrollbars is something of a hack (using this workaround), but it can be done. Here's a snippet:
ScrolledComposite scrolledComposite = new ScrolledComposite(
…
0
votes
4answers
82 views
How to catch onmouseleave event for TDateTimePicker component in Delphi 7
I need to detect OnMouseLeave event for TDateTimePicker component, but it doesn't contain such event in events list. Is there a way to detect it manually?
2
votes
2answers
40 views
Swing won’t trigger mouseEntered/mouseExited properly after mouse wheel events?
I have an issue where Swing (in Java 1.6, Windows) doesn't seem to trigger mouseEntered and mouseExited events the way I want it to. I have an application where I wish to have a nu …
0
votes
3answers
32 views
Do controls in Firefox receive mouse events when their CSS visible property is false?
I'm having a problem with FIREFOX. I have an invisible list control over a drop-down control (html 'select'). Don't mind why, but I will say that the over-layer is a pop-up that …
1
vote
1answer
29 views
Why does GroupBox not have a MouseMove event?
The WinForms GroupBox control doesn't support MouseMove (or at least, not consistently), and I don't understand why.
Since it descends from Control, it does have a MouseMove event …
0
votes
5answers
526 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 …
1
vote
2answers
264 views
Routing Mouse Events through a Sprite in Actionscript 3
In a pure Actionscript 3 project, I have a sprite that overlaps another sprite. The lower sprite normally handles mouse clicks. The lower sprite no longer processes mouse events …
0
votes
2answers
29 views
How to make an object be ignored and letting mouse evnets pass through?
Hallo, I been having this problem for a while and I have no idea how to solve it.
I have a flash game (very much like a normal memory game) that has a lot of Movieclips in it that …
2
votes
2answers
189 views
Lag problem with jQuery focus() and blur() events.
I'm attempting to create a navigation menu that uses some jQuery. I wanted keyboard users to be able to have the same experience as mouse users, so I'm duplicating the functionalit …
1
vote
1answer
54 views
Graphic added over button is my blocking MouseEvent why?
Hi everyone my problem today is I have a couple of buttons that slide up and down, when in the up state I add an X graphic to symbolize a a close button. However the X graphic seem …
1
vote
2answers
131 views
Resize a movieclip wihout messing up mouse coordinates.
How do I do this? I have a seekbar which I'm retrofitting to resize with the FLVPlayback. Right now it gets the mouseX when you click the seekbar, and divides that by the length of …
0
votes
1answer
92 views
Make NSRunLoop runMode:beforeDate: process mouse events
In a little game I am writing I have a method Player - (void)walkToPoint:(CGPoint)point
I want this method to block, that is, it should not return before the player sprite reached …
0
votes
2answers
234 views
MouseUp event interrupted?
I'm making a custom control with a panel. I want to be able to drag and drop it so I've implemented that in the MouseDown event of my control. But I want the thing to react when yo …
0
votes
3answers
141 views
Waiting for mouse input in Java Swing
I'm working on a Java Swing application. I have a button whose action runs a query on a database and then plots the results. These commands are performed from the listener on the …
1
vote
2answers
91 views
capture mouse position on setInterval() in Javascript
I have a function in javascript that moves one div depending on the mouse position. This function is set on a setInterval() function and executed every second. I need to capture th …
