Advertisement
BlackDragonBE

RW.com Windows Writer Pain Relief (RWWWPR)

Aug 20th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.32 KB | None | 0 0
  1. HotKeySet("µ", SendCodeTag) ;Replace µ with the key you want replaced by a single `
  2. HotKeySet("ù", SendEmHyphen) ;Replace ù with the key you want replaced by a — (em hyphen)
  3.  
  4. While 1
  5.     Sleep(100)
  6. WEnd
  7.  
  8. Func SendCodeTag()
  9.     Send("``")
  10.     Send("{BACKSPACE}")
  11. EndFunc
  12.  
  13. Func SendEmHyphen()
  14.     Send("—")
  15. EndFunc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement