简体   繁体   中英

How to write script in autohotkey which press Tab+Tab+Tab+Enter+Up+Tab+Enter

I would like to write an AutoHotKey script to preform the following chain of keyboard actions, when I press a single button on my keyboard:

Tab+Tab+Tab+Enter+Up+Tab+Enter

How can I detect keyboard actions in order to trigger this, and how do I go about executing the chain of keyboard actions afterwards?

One way to do it:

Send {Tab 3}
Send {return}
Send {Up}
Send {Tab}
Send {return}

Please take a look at The Tutorial for an introduction to AHK.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM