组合按键触发.ahk 163 B

123456789101112
  1. #Requires AutoHotkey v2.0
  2. ; 输入ss就替换成hello world
  3. ::ss::
  4. {
  5. Send "hello world1"
  6. return
  7. }
  8. ; 输入sc就替换成hello world2
  9. ::sc::hello world2