Double Tap on Ctrl to activate a program

Discussion, questions and support.
Post Reply
ali
Posts: 1
Joined: Jul 23rd, ’14, 18:25

Post by ali » Jul 23rd, ’14, 18:28

Is there any way to activate a program with double Ctrl-Tap (like Alfred under Mac OS)?
User avatar
Marko
Posts: 1925
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Jul 23rd, ’14, 20:36

Yes, of course. I will look into it and post a solution when I'm back to my computer next week. In the meantime you can see the similar solution used for double Escape Close command in the Library.
User avatar
Marko
Posts: 1925
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Jul 27th, ’14, 11:44

Here it is:

Shortcut: Ctrl (you need to double click the shortcut entry field to enter it manually)
Type=Command
Command:

Code: Select all

If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 350)
   Run Notepad
Change the run command to your program path.
Post Reply