12345678910111213141516171819 |
- ; @Author : liuyuqi
- ; @Contact : liuyuqi.gov@msn.cn
- ; @Time : 2015/07/21
- ; @Version : 1.0
- ; @Desc : 基础send
- ; ctrl+J 自动输入 My First Script
- ^j::
- Send, My First Script
- Return
- ; 输入 ftw 字符串后,自动替换为 Free the whales
- ::ftw::Free the whales
- Return
- ; 输入 btw 弹框
- ::fky::
- MsgBox You typed "fuck you".
- Return
|