2-key sequence translation

  • Thread starter Thread starter Bruce Hoyt
  • Start date Start date
B

Bruce Hoyt

I am a dedicated/committed user of the Wordstar control keys sequences. They
have been built-into my brain for 20 years. I have redefined the control key
to be just to the left of the 'A' key on my keyboard so that seqences like
Ctrl+Q_Ctrl+S and Ctrl+Q_Ctrl_D are easy to do.

Is there a program that hooks keys and translates them which will enable me
to use my familiar 2-key sequences with an editor that only allows one key
for an editing function?

Something like AutoIt with key input detection would be great.

Thanks for your help.

Bruce
 
Something like AutoIt with key input detection would be great.

AutoIt3, nearly out of beta, has HotKey assignments. You can set all
your favorite CTRL+(letter) assignments to do whatever you want...

http://www.hiddensoft.com/autoit3/

example: (script sends clipboard contents when CTRL+A)

; script start
HotKeySet("^a","CtrlAFunc")

While 1
Sleep(100)
Wend

Func CtrlAFunc()
Send(ClipGet())
EndFunc
; script end

Larry
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top