2_基础send.ahk 232 B

1234567891011121314
  1. ; ctrl+J 自动输入 My First Script
  2. ^j::
  3. Send, My First Script
  4. Return
  5. ; 输入 ftw 字符串后,自动替换为 Free the whales
  6. ::ftw::Free the whales
  7. Return
  8. ; 输入 btw 弹框
  9. ::fky::
  10. MsgBox You typed "fuck you".
  11. Return