2
votes
6answers
216 views

Button Action: Left Click vs. Right Click

Has anyone ever seen the following design pattern in use, and if so, is there ever a good time to use it? (Button) labeled "Do Something" [User] left-clicks on (Button) [System] action A (Add) is ...
-3
votes
3answers
185 views

Is double-click necessary anymore? [closed]

Double-click can pose multiple problems... you can move the mouse too much between the 2 clicks and it won't register as a double-click... or worse, it will be interpreted as a "drag"... same problem ...
4
votes
6answers
531 views

UI design with MINIMUM number of clicks

Project : ASP.NET with C# Client side : JavaScript and jQuery Consider the scenario, I have a number of user to use the software. I will classify them into different groups. Then, I would like to ...
13
votes
4answers
399 views

When is it a good idea to perform actions on mouse-down *as opposed to click/mouse-up*?

I've grown used to the GUI paradigm of pre-select on mouse-down, action on mouse-up. In fact, I rely on it, sometimes canceling an unwanted action after mouse-down by dragging outside of the click ...