2_基础send.ahk 352 B

12345678910111213141516171819
  1. ; @Author : liuyuqi
  2. ; @Contact : liuyuqi.gov@msn.cn
  3. ; @Time : 2015/07/21
  4. ; @Version : 1.0
  5. ; @Desc : 基础send
  6. ; ctrl+J 自动输入 My First Script
  7. ^j::
  8. Send, My First Script
  9. Return
  10. ; 输入 ftw 字符串后,自动替换为 Free the whales
  11. ::ftw::Free the whales
  12. Return
  13. ; 输入 btw 弹框
  14. ::fky::
  15. MsgBox You typed "fuck you".
  16. Return