what combination of computer keyboards makes same as mouse's right click button?and also left click button?

link|improve this question
1  
You should probably specify the OS, and window manager (if applicable). – Robert Kluin Oct 2 '10 at 16:57
windows7 system – Anonymous Oct 2 '10 at 16:58
feedback

migrated from stackoverflow.com Oct 2 '10 at 18:40

This question came from our site for professional and enthusiast programmers.

2 Answers

There isn't one for left-click, though spacebar and Enter are often usable.

Right-clicking is usually a request for a context-sensitive menu which is performed on the keyboard either by clicking the context key (menu/pointer looking thing usually to the right of the space bar between Alt and Ctrl (along with the Windows key), or by pressing Shift+F10.

Note that about 65% of programmers who write Windows applications think that they should open a context menu in response to a right-click (WM_RBUTTONUP--which a true amateur thinks is WM_RBUTTONDOWN). This is of course incorrect. The correct event to open a context menu from is WM_CONTEXTMENU (which is sent immediately following WM_RBUTTONUP or if the keyboard key is pressed).

What that means is that 65% of applications out there won't respond to the keyboard request for a context menu.

link|improve this answer
+1 for "menu/pointer looking thing usually to the right of the space bar between Alt and Ctrl". Thanks. – Xavierjazz Oct 2 '10 at 21:03
feedback

You can define your own using software like autohotkey:

Example

This code replaces:

  • left alt to left mouse click
  • right alt to left right click

Code:

LAlt::LButto
RAlt::RButton

Link to autohotkey keyboard remapping: link
Link to autohotkey download : link

link|improve this answer
If you're actually after the context menu (and not a physical rt-click) use ~RAlt::AppsKey in your AutoHotKey script. – yhw42 May 27 '11 at 18:58
feedback

Your Answer

 
or
required, but never shown