Jump to content
Macro Express Forums

Why Can't I Just Hold Down The Control Key?


dhinckley

Recommended Posts

I'm new (obviously). I've basically got my keyboard mapped in just about every program the same. To go left/right/up/down I hold the control key and j/l/u/k

 

The problem is with macex the shortcut key forces me to click and release the control key every time. grr. I just want to be able to hold down the control key and hit eg 'K' several times to go down several lines in an editor.

 

Is there any way around this?

Link to comment
Share on other sites

I'm new (obviously).  I've basically got my keyboard mapped in just about every program the same.  To go left/right/up/down I hold the control key and j/l/u/k

I've been remapping my cursor keys like that since the '80s (remember SuperKey?).

(Except my "UP" key is Ctrl-i, maybe you meant i instead of u)

 

You can't do what you want in Macro Express. I couldn't live without Macro Express, but also need to have the cursor arrows repeat.

 

So I also use AutoHotkey, which is a very powerful free scripting program, but for me difficult to use except for simple stuff (like arrow key macros). There are also people out there who will write some very complicated code using AutoHotkey, often for free. So I do have a half dozen AutoHotkey utilities but the stuff I write for myself is usually using Macro Express.

 

 

The AutoHotkey script to do what you want is basically:

 

$^l::Send, {Right}

$^j::Send, {Left}

$^i::Send, {Up}

$^k::Send, {Down}

 

And this is why I no longer bug the Macro Express coders to include a "repeat" capability.

 

By the way, I also use a system level key remapper to put the Control key next to the "a" key, where it was always intended to be!

Link to comment
Share on other sites

  • 2 weeks later...

I wish macro express would provide some way, even a limited facility, to let you keep the control key down and key you key a control key macro.

 

I write with WordPerfect 5.1 -- "It gets better every year" -- and, with it, I can keep the control key down and use character keys to move the cursor. It's annoying to be able to do this in DOS but not in Windows.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...