Edge Rewrite
// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a29e8fac1b07f814

Jump to content

Wikipedia:Reference desk/Archives/Computing/2019 October 24

From Wikipedia, the free encyclopedia
Computing desk
< October 23 << Sep | October | Nov >> Current desk >
Welcome to the Wikipedia Computing Reference Desk Archives
The page you are currently viewing is a transcluded archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


October 24

[edit]

Keyboard remapping in Win 7

[edit]

I would like to remap a single key to produce multiple keystrokes, such as having "." on the numeric keypad produce ".com". Do any keyboard mapping programs allow this ? Also, could I remap a key to do that and click on the mouse, too ? SinisterLefty (talk) 02:51, 24 October 2019 (UTC)reply

AutoHotkey (documentation) lets you create hotkeys to type certain lines of text, run a program or batch file, or create shortcuts for specific programs. You can even have one hotkey perform multiple actions in a series.. DroneB (talk) 09:29, 24 October 2019 (UTC)reply
Thanks. Any other options to consider ? SinisterLefty (talk) 05:55, 28 October 2019 (UTC)reply
Just learn AHK :) It's so versatile I can't imagine using Windows without it. 93.136.155.134 (talk) 00:28, 29 October 2019 (UTC)reply
Here's a working script that prints ".com" when pressing ".":
~.::
Send com
Return
 Preceding unsigned comment added by 93.136.155.134 (talk) 00:35, 29 October 2019 (UTC)reply
Tried it. Worked in most places, but not in a game I tried: defly.io at coolmathgames.com. Tried running as Admin and as a compiled script, and both at once. Is there something else I could try ? SinisterLefty (talk) 01:15, 30 October 2019 (UTC)reply