Mousedown is a browser event that occurs when a user clicks the mouse button down on an element.
2
votes
2answers
23 views
Context Menu - How can I know which control activated it
I have made a context menu which is activated via MouseDownevent. This event checks if the user clicked the right button and if so opens the menu. I am using the same event to open the same context ...
5
votes
2answers
23 views
Capturing click outside of a absolute positioned div
http://jsfiddle.net/dgjJe/1/
In the above jsfiddle I am trying to capture when the user clicks outside of the .inner div but I can't seem to get it working.
HTML:
<div class="outer">
...
0
votes
1answer
21 views
How to mange a listbox inside a tab control
This is the first time I'm trying to build something with a tab control.
At first I made a small application in .NET 4 C#, which had a listbox as a stand alone at its main window and now I want to ...
0
votes
0answers
19 views
Create element on mousedown and immediately be able to drag it
Im trying to create an element (a div for example) when I do on mousedown. Up to that, no problem. But what I want is to be able to drag that element while I'm with the mouse down.
Any one?
0
votes
2answers
61 views
Devexpress GridView crazy MouseDown event
When I implement the MouseDown event of the GridView, after I click on anything inside the GridView my program goes nuts and starts to treat everything on the screen as GridView, calling the MouseDown ...
0
votes
0answers
10 views
Jscrollpane mousedown>iframe mouseleave>outside mouseup
When I mousedown on jscrollpane drag bar and move to a dive containing iframe and do mouseup on iframe, and move mouse outside iframe, it starts scrolling even on mouseup. When I click anywhere on ...
0
votes
2answers
34 views
Moving a control by dragging it with the mouse in C#
Greetings stackoverflow community! I'm trying to move the control named pictureBox1 by dragging it around. The problem is, when it moves, it keeps moving from a location to another location around the ...
1
vote
1answer
104 views
JQuery slideDown slideUp mouseover mouseout
what I'm trying to do is to keep video in .slideDown until mouseout text AND video, is that possible? here's my code until now
Both #text and #video are div
JS here:
<script>
...
0
votes
2answers
42 views
mouseDragged: is not passed down two subviews?
I am writing a program that has a number of subclassed NSViews (Frame) with varying contents that can be dragged around by the mouse in their superview. All of the views contain one subview, called ...
1
vote
1answer
40 views
WPF: Canvas swallowing MouseDownEvent?
Can anybody please explain to me why theMouseDownevent is not reaching theScrollViewerin this easy example?
<Window x:Class="MouseDownTest.MainWindow"
...
-1
votes
1answer
55 views
MouseDown event on a custom UserControl located on a FlowLayoutPanel
I'm trying to implement a drag/drop in my application. I need to be able to grab a UserControl (in my case PipelineTask) that I programatically added to a FlowLayoutPanel (which in it's turn is ...
0
votes
1answer
141 views
no overload for matches delegate 'system.eventhandler' MouseDown MouseUp MouseMove
I have to create labels in a form depending on a string[] called "descripcio". Each parameter of "descripcio" corresponds to a new label.
Each label needs three events, MouseDown, MouseUp and ...
1
vote
1answer
46 views
How to redraw a single ellipse with most recent mouse position
I am looking to draw an ellipse on the screen during the MouseMove() event but am wanting it to only draw the most recent ellipse from a start point to the current mouse position. At the moment it is ...
0
votes
2answers
281 views
How to draw and move shapes using mouse in C#
I'm new to programming in C# and wanted to ask for a little bit of help. I'm currently trying to move a color-filled rectangle that I draw on a Windows Application form with my left mouse button, and ...
0
votes
1answer
79 views
Preventing text selection highlighting using an input box
I am currently working on a webpage as a hobby project with some neat animations using jquery and css3 that responds to the how the user drags his mouse on the page. Here is a summary of how I worked ...
3
votes
1answer
81 views
AS3 mouse events not firing when mouseX = 0
I'm creating what should be a very simple, full screen drag and drop game in Flash Develop. It works fine except in one frustrating instance.
I add items to the stage, add MOUSE_DOWN listeners to ...
0
votes
1answer
67 views
cancel MouseDown event
I've several count variables with min and max values. While I press the appropriate buttons the counter goes up or down.
While pressing the lmb and the counter exceeds e.g. 100 (max value) it doesnt ...
0
votes
0answers
23 views
Store image state in localstorage
I have an image with a onmousedown state of another image like so:
<pre id="img1" contenteditable="true" onmousedown="storeImgState(this.id);"><img src="redbutton.png" alt="red" ...
-2
votes
1answer
85 views
why when mousedown left key or right key the code not work in jquery?
html code:
<div class="wrap">
</div>
js code:
$(document).ready(function() {
$("body").mousedown(function(event) {
switch (event.which) {
case 1:
...
0
votes
3answers
73 views
Creating mousedown event with global scope
I am hacking on something to fix another problem that is a constraint of the system. Not ideal, but..
Anyway, I need to generate a click/touch then find out the topmost element under the poing (300, ...
0
votes
0answers
11 views
Mousedown Hold on mobile
I have a HTML app, and there I have a div with some content, text and image. When the user hold the mouse down for one second, this div disappears on a normal desktop browser (that is what I want to ...
2
votes
2answers
193 views
JavaScript while mousedown
var mdflag;
var count = 0;
document.addEventListener("mousedown",mdown,false);
document.addEventListener("mouseup",mup,false);
}
function mdown()
{
mdflag=true;
while(mdflag)
...
0
votes
3answers
87 views
Select all in a textbox unless clicked again. c# Confused
I'm trying to make it in my program, if you click on a text box it will select it all. And then if you click it again it deselects it all.
I've tried making it like this..
private void ...
0
votes
2answers
314 views
AutoHotKey on right mouse click get a keyboard button pressed as well
Could someone help me with AutoHotKey Macro to have Q button pressed and released when right mouse button is clicked and Q button pressed and released when right mouse button is released?
Edit:
...
0
votes
0answers
25 views
<input disabled=“disabled”> [duplicate]
This script would work perfectly, except that the <input> is disabled. How do I get the onclick event to work without enabling the <input>?
<td id="File_Number"><input ...
3
votes
2answers
191 views
MouseDown and Click conflict
I have a Drag() method on form_MouseDown event. I also have a click event on the form. The problem is that if I click on the form, MouseDown event gets triggered and it never gets the chance to ...
0
votes
3answers
63 views
LogicalTree Control directly under mouse no VisualTree
This is a WPF application.
I'm trying to get the control directly under the mouse and it's proving to be a surprising pain.
Mouse.DirectlyOver, InputHitTest and VisualTreeHelper.HitTest all ...
0
votes
2answers
134 views
JavaScript- how do I use the 'mousedown' to 'select' an image on the canvas
I have the following JavaScript mousedown function, which I'm using to detect when a 'mousedown' has been performed on one of the images I have displayed on an HTML5 canvas:
_mousedown: function(evt) ...
1
vote
1answer
143 views
Kendo-ui datagrid mousedown is not detecte by IE8
This worked perfect with Chrome, but IE8 is not firing this action. I tried the code below. I see the message in chrome, but IE8 is not displaying it that makes me think it is not recognizing this ...
2
votes
2answers
68 views
Return false; When mouse hold(click) in x seconds
My code is...
var timer;
var func = function () {
$("body").append("1");
};
$(document).on('mousedown' , 'a' , function(e){
timer = setTimeout(func, 1000);
}).on('mouseup mouseleave' ...
0
votes
1answer
235 views
C# mousedown event continously press key
okay so what I want to do, it when the mouse is HELD DOWN I want it to continously press a key. it should continously press this key until I let off.
Imagine if you will, a left and right button on a ...
0
votes
1answer
95 views
Changing the text in an HTML <p> tag depending on which canvas image a user clicks
I have an HTML5 canvas which is displaying a number of images. I have used the KineticJS library to draw the images and make them draggable, however, I'm using a local copy of the library, since there ...
0
votes
0answers
55 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
151 views
Awesomium Web Control MouseDown does not work
I am trying to make a WebBrowser with Awesomium 1.7 Release Candidate. I want to use the KeyDown and MouseDown events on an Awesomium WebControl but they don't seem to work. I have done some research ...
0
votes
0answers
33 views
Why two left Mouse-Click are needed to switch between my TreeList Items C#
Why do I have to left click my mouse twice to switch between nodes? The following is the excerpt from Mouse_Down event handler.
if (e.Button == MouseButtons.Left && ModifierKeys == ...
0
votes
0answers
116 views
SVG Circle Mousedown events not loading in IE9
I've got an SVG image with links that run a Javascript+jQuery function. In Chrome, the links work as expected. But, in IE9, nothing happens when you click the circle. I added an alert(); function to ...
0
votes
1answer
83 views
how to reset stopImmediatePropagation
I'm stuck here and not able to proceed further. Any help/ pointer will be appreciated.
I've a Kendo grid and I'm extending a function on the grid so that before change event is fired, I'm binding the ...
-1
votes
1answer
479 views
AutoHotKey Mouse down Continue press a key, until mouse up
I was trying make a script that enable me to continue press a certain key, for example "1", when I hold my left mouse click for more than 0.5 sec, and will continue until I release the left mouse ...
3
votes
2answers
116 views
How to catch 1 tap with 3 fingers (NSEvent) on a custom NSView?
I have to following code to catch mouseDowns on my custom NSView but I think this only catches how many taps (using the clickCount), not how many fingers were used to tap:
- ...
0
votes
4answers
85 views
How to render an unresponsive button via HTML (for illustration purposes)
How do I render a normal (enabled-looking) button, via HTML/CSS, which doesn't change its appearance upon mouse over or mouse down (for illustration purposes e.g. Press [x] to cancel)?
(i.e. I don't ...
5
votes
1answer
121 views
make delayed mousedown event
I have a datagridview which cells has a click event. The cells also have the following mouseDown event:
if (e.Button == MouseButtons.Left && e.Clicks == 1)
{
string[] filesToDrag =
{
...
-1
votes
4answers
174 views
mousedown not working on dynamically loaded element
I am trying to load my navigation bar like this:
$.get("nav.html",function(menuData){
$("body").html(menuData);
)};
and within "nav.html" we have something like
<td id='menu-item-1'>menu ...
1
vote
1answer
267 views
How to make html5 canvas shape resizable
check out: http://jsfiddle.net/aqaP7/4/,
and
http://shedlimited.debrucellc.com/test3/canvaskinclip.html,
I want to make html5 images resizable,
and it needs to be based on the html5 etc because my ...
0
votes
1answer
124 views
Javascript Onclick vs Onmousedown Race Condition
I have a SUBMIT and SAVE button for a form that are by default listening for Onclick events.
When the form is SUBMITTED OR SAVED - the page resets the scroll position to the TOP of the page.
Recently ...
0
votes
3answers
190 views
Mouseup and Mousedown
So I want the buttons to change style when mouse is down, and return to previous when it goes up. I have this code:
$('#divMenu > #menu li a').mousedown(function(){
$(this).css({
'font-size': ...
0
votes
0answers
111 views
JQuery clone not working with sortable & sortable not working before clicking
As the title of this topic already says, I've got two problems:
I'm using JQuery Sortable and would like to move items, without losing the original item (helper: clone).
However, the helper is ...
1
vote
4answers
185 views
cancel event mousedown in javascript / jquery
I'm doing a drag and drop and when the draggable object passes certain limits that I have set to the screen I want to return it to its original position.
My problem is that if the onmousedown event ...
1
vote
2answers
110 views
onmousedown on dynamically generated html elements
I am using jQuery.ajax to read and render XML file into HTML.
The below code generates a table of buttons for each data record in the XML:
$(xml).children('run').each(function() {
var runname = ...
1
vote
1answer
125 views
Mousedown on objects + GUI interface
The problem is the following : if i add renderer.domElement to my camera attributes the GUI works perfectly but the mousedown actions don't work.
On the contrary, if i remove renderer.domElement the ...
0
votes
0answers
275 views
Mousedown event not working for panel when I click a picturebox in a panel
I have a panel which has pictureBoxes and labels added to it. I have this problem; when I click a picturebox I want to call panel_mouseClick/mouseDown methods, but only pictureBox_MouseDown event is ...





