Mouse events are any events that fire when the user performs mouse operations (such as mouseenter, mouseleave, mousemove, mousedown, etc.) on the element you registered the event on or one of its descendants.
12
votes
4answers
505 views
What is the most reliable way to hide / spoof the referrer in JavaScript?
Normally, the referrer is traceable through:
JavaScript's document.referrer
The request headers, e.g. PHP's $_SERVER['HTTP_REFERER']
I have set up a Codepad demo which shows these properties, for ...
7
votes
3answers
354 views
Triple Mouse Click in C#?
In MS-Word Mouse Click events are used as:
Single Click - placing Cursor
Double Click - Selects Word
Triple Click - Selects Paragraph
In C# I can handle single and double mouse click ...
3
votes
2answers
64 views
Generate mousemove event with dispatchevent?
Is there anyway to do a mousemove event with java.awt.Component.dispatchEvent(AWTEvent)?
.dispatchEvent(new MouseEvent(client.a
.getComponentAt(1, 1),
...
3
votes
2answers
155 views
Java: define unit component for mouse events
I want to have a JPanel called mainPanel and add several components on it; Also I defined a mouseAdapter and added to my mainPanel that overrides mouseEntered and mouseExited to for example change ...
3
votes
2answers
614 views
Draw a line with two mouse clicks on HTML5 canvas?
How do I draw a line with two mouse clicks on canvas?
3
votes
1answer
212 views
Hooking the 3rd X-Mouse button?
I wrote a low-level mouse hook in C#, which should capture XBUTTON events. For the 1st and 2nd xButton it works just fine, but there is no message for the 3rd xButton on my mouse. It seems like there ...
2
votes
3answers
96 views
JList MouseMoved and MousePressed
i've extended a JList to provide two separate functionalities, toolTipText for items, and right-click options. both work separately, but when i try to use them together, the MouseMoved events aren't ...
2
votes
2answers
87 views
Java finding which image i clicked?
Scenario: i have one JFrame and JPanel added to that JFrame. on this panel i have drawn 3 images using
public void paint(graphics g) {
g.drawImage(img1,100,100,null);
...
2
votes
1answer
464 views
How can I raise a mouse event in WPF / C# with specific coordinates?
I'd like to raise a mouse event (a click, mousedown, or mouseup) by taking a user's click anywhere in a WPF window and translating it by a known difference, e.g. click at x,y, raise the click event at ...
2
votes
1answer
884 views
TreeView, Overiding the double click mouse event WPF
I was wondering, what will be the best way to override the Tree View's mouse click?
As you know when you double click a tree view parent, then the tree view expands and shows the children.
If it ...
2
votes
1answer
155 views
Passing Click Events in Composite WPF/XAML Controls
So, let's say I have a DataTemplate:
<DataTemplate x:Key="ProjectsDataItemTemplate">
<ComboBoxItem x:Name="ProjectComboBox" Opacity="1" HorizontalAlignment="Stretch" ...
1
vote
0answers
27 views
How to click-through on transparent parts of cocoa web view
Okay so I have a web view that holds the chat bar div from Facebook.com.
The web view itself is larger/taller than the bar because obviously it needs to be for when a chat box is opened.
When a chat ...
1
vote
2answers
120 views
Capture all mouse events in user control
I'm trying to capture all mouse events in a user control (even the ones that occur in child controls). For that I use the "override WndProc"-approach:
protected override void WndProc(ref Message m)
{
...
1
vote
1answer
179 views
Taking control of another application with sendkeys or window’s API is not working
I have tried to control another application to automate a process we do 100 times a day. It is simple enough, a few key strokes is all but I have been foiled in all attempts.
ROUND 1:
I have tried ...
1
vote
2answers
54 views
MouseEnter & MouseLeave objectname
I want to add MouseOver& MouseLeave events to dynamical created panels in a flowLayoutPanel.
I added all panels in a list named "panels" and they are accessible with "panels[index]".
Now I want ...
1
vote
1answer
86 views
Mozilla Firefox: show/hide triggers a mouseover event?
Let's say you have a <div> element which is hidden.
There is a mouseover event attached to it and the mouse cursor is placed at the location where the <div> element will appear once it is ...
1
vote
2answers
64 views
How can I determine start and stop points for mouse cursor?
Let's say the user starts to move mouse and stop at somewhere on the browser. How can I determine start and stop point with Javascript/Jquery ?
Start point is easy, I can get it with mousemove event ...
1
vote
3answers
422 views
JFreeChart interactive chart editing: tranforming mouse coordinates into series values
I have an XYLineChart built with JFreeChart. I need, given that chart and a ChartMouseEvent, retrieve the X value of the displayde series closest to the point where the mouse has been clicked.
Thanks ...
1
vote
1answer
186 views
JFreeChart interactive chart editing handling ChartMouseEvent
I'm trying to intercept ChartMouseEvent in order to modify an XYSeries of a JFreeChart object created with ChartFactory.createXYLineChart method (and displayed using a JDialog).
I retrieve ...
1
vote
1answer
196 views
MousePressed not working
I've been trying to do this assignment and for it to work I need the event mousePressed to work but for some reason it's not responding to the mouse. Its purpose is to paint another yellow circle when ...
1
vote
1answer
446 views
How Do I Use SendInput in Delphi?
I was using the Mouse_Event Function in Delphi 2009, but the Delphi documentation says this function has been superceded and to use SendInput instead.
The Delphi SendInput documentation defines the ...
1
vote
1answer
190 views
jfreechart general question on the possibility of interactlively modify a displayed curve dragging mouse
I've never used JFreeChart before. It has been told me that it's a pretty good product for drawing charts in Java.
I have a doubt, and I would like to have some advices by someone that has already ...
1
vote
1answer
231 views
How do I properly intercept and forward mouse events with Xlib?
I'm working on a simple Xlib program where I want to intercept all mouse events (motion, button pressing, button releasing). I might want to do something with this data at some point, but right now, ...
1
vote
2answers
671 views
How to check for TrackBar sliding with mouse hold and release
I have a trackbar in my WinForms program which by moving it a huge and time consuming method will be refreshed. Have a look at this code:
trackBar_ValueChanged(object sender, EventArgs e)
{
...
1
vote
0answers
168 views
NSWindow with a hole and mouse events
I am developing an Desktop application in which I am creating a window with a hole in it.
1) The user should be able to drag the window present just below the hole through this hole.
2) When he ...
1
vote
1answer
226 views
ActiViz .NET LeftButtonReleaseEvent: Where did i click
i'm working with ActiViz .NET (VTK) and have a small problem.
When i register a event (for ex. the LeftButtonReleaseEvt) i can't find out where on the RenderWindowControl i clicked. the event is ...
1
vote
1answer
349 views
Mouse/Keyboard input in OSX without Cocoa
I am writing an application in C++ using CGL/OpenGL, and need keyboard/mouse input. I was trying to avoid Objective-C and Cocoa if possible. I am aware that one can capture input using Carbon, but ...
1
vote
2answers
150 views
JavaScript/Ajax mouse selectable objects
I want to implement a JavaScript/Ajax-based client side script/module that would allow me to do the following:
On an html page lay out a “floor plan”, with color rectangles representing “rooms”
On ...
1
vote
1answer
415 views
Drag and drop and mouse events
My question is why mouse events aren't raised on window when I drag some text using drag and drop from another window?
I have a window where I listen to MouseEnter event which is not raised when I ...
1
vote
2answers
171 views
Is there a way to make controls transparent to mouse events in WPF?
Is there a way that I can let mouse events pass through to controls behind?
1
vote
1answer
177 views
How to get raw mouse events with XI2 extension?
I'm using XISelectEvents for root window with deviceid=XIAllDevices and mask=XI_RawMotion, but I don't get any events. What's wrong?
1
vote
2answers
4k views
WPF: Change background color of border on left mouse button down
DON'T BE SCARED OFF, THE QUESTION IS SIMPLE!
Below is a style I use for buttons in my application. Now I'm trying to change the background color of the Border element that has the name "Background" ...
1
vote
1answer
457 views
Change Image OnMouseOver in ControlTemplate
Here is my XAML:
<Style x:Key="ExpanderStyle" TargetType="{x:Type ToggleButton}">
<Setter Property="IsEnabled" Value="True" />
<Setter Property="Template">
...
1
vote
1answer
114 views
Tabitem PreviewMouseLeftButtonDown is raised every time when mouse is pressed to the inside content. How to avoid this?
In WPF, I have raised PreviewMouseLeftButtonDown for a TabItem. I want this event to raise when TabItem's header is clcked. The TabItem's content is a TextBox and a Button, but whenever I click on ...
1
vote
2answers
411 views
How to catch mouse left down if data template has a transparent background?
My DataTemplate looks like this:
<DataTemplate x:Key="ItemTemplate">
<StackPanel MouseLeftButtonDown="StackPanel_MouseLeftButtonDown">
However I can't catch mouse left button down. If I ...
0
votes
1answer
15 views
mouseenter + mouseleave events
I just found out that Firefox is natively supporting mouseenter and mouseleave events.
This means we have IE and Firefox support and as soon as webkit jumps on the band wagon we have a cross browser ...
0
votes
1answer
56 views
Catching event when following a link
I am trying to track clicks on an external link (without using a "redirect page").
How can I capture an event when a user follows a link, regardless of whether the user:
Left clicks on the link
...
0
votes
0answers
30 views
Apache-POI get events dynamically from power point presentation
I want to know if there is any way to get events dynamically (click event or next slide event) from the power point presentation in my java application while users shows the presentation(projector or ...
0
votes
0answers
85 views
jQuery Mouse Direction Plugin
Sorry guys, it's more of an answer than a question. I've seen many people asking how to identify directional mouse movements using js/jQuery and this is a plugin I wrote for them this afternoon.
...
0
votes
1answer
126 views
Show spinner while porcessing in GWT
I'd like to know if possible to show a spinner while the application is making some calculations.
I'm using a slider bar to modify an svg image. I call the function which makes the calculations to ...
0
votes
3answers
97 views
Canvas string click detection
I'm working on a game and for the menus I'm using Canvases to draw the stuff for that menu.
For options and buttons I'm using Graphics on the canvas to draw a string. How to detect the mouse clicking ...
0
votes
2answers
110 views
jQuery toggle mouseover/enter & mouseout with a simple function
I have html.
<p class="textlimity" title="heyheyhey"> asd</p>
now in js i would like to toggle the textlimity text() on mouseover and mouseout so i written.
var textlimity = "";
var ...
0
votes
1answer
72 views
About flickering mouse custom cursor in ActionScrip3
I have a problem with flickering mouse custom cursor.
I have a timeline which is my main clip and I want to show a pencil like cursor when I am over the timeline movie clip. I am using standard Mouse ...
0
votes
2answers
115 views
VC++ DHTML DIALOG move borderless form
I know how to move the borderless form in CDialog.I quoted my code as follows.
It enabled the window to move by dragging it by any point inside the window!
void MyWnd::OnLButtonDown(UINT nFlags, ...
0
votes
1answer
172 views
get coordinates from google Maps using mouse event
How to get the coordinates of an Google Map using mouse click in the c# and .net?
0
votes
1answer
117 views
Use MouseEvent for getting Object`s public variables
I have a simple problem which is not easy at the moment. this is a text field class which add a text field to a movieclip (passed from root class) and also save(buffer) some data (like xml file name) ...
0
votes
2answers
278 views
EventSetter doesn't fire for ListView if ItemContainerStyle is style
A relative n00b to WPF. I have a ListView thus:
<ListView>
<ListView.View>
<GridView>
...
</GridView>
</ListView.View>
...
0
votes
5answers
77 views
How To Keep Checking For Something Without a Timer?
I need to be able to check if the mouse is within a certain area on the form continuously. I want to be able to do this without the use of a timer, though. How would I go about doing this?
I'm ...
0
votes
2answers
205 views
Making a Movieclip which is under a mask clickable and respond to MouseEvents
This question is a follow up to the questions on link:
Making a Movieclip which is set as mask clickable and respond to MouseEvents
The structure of your layers that I have on stage looks like this:
...
0
votes
0answers
136 views
Telerik - To acess controls on click of Hyperlinkbutton in RadPanelBar for Silverlight
I am using the following code to bind the data to the RadPanelBar for Silverlight, It works fine.
I have a HyperLinkButton in my PanelBar. my question, On the click of a hyperlinkbutton, how can I ...