mouse gesture question

Discussion, questions and support.
Post Reply
Howard
Posts: 7
Joined: Dec 12th, ’16, 18:17

Post by Howard » Feb 19th, ’14, 10:09

Hi, is it possible to use a mouse gesture to make active a running application that is not currently active? (I have this running application called datadrawer that is not currently active. I would like, upon making the gesture, to make this application active.) Is this possible?
User avatar
Marko
Posts: 1726
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Feb 19th, ’14, 14:19

Hi Howard, of course. Select a gesture (or any other module), use Type=Command and put the following into the command field:

Code: Select all

WinActivate, datadrawer
The window name is case sensitive so you might have to change it to your actual window name. For more information about this command, you can visit Autohotkey documentation at http://www.autohotkey.com.
Howard
Posts: 7
Joined: Dec 12th, ’16, 18:17

Post by Howard » Feb 19th, ’14, 14:35

Thanks Marko. It works!
Post Reply