CosminVarlan

AutoHotKey

May 5th, 2020
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn  ; Enable warnings to assist with detecting common errors.
  3. ; ATENTIE ! DACA NU FUNCTIONEAZA, SCHIMBA FORMATUL IN CARE ESTE SALVAT FISIERUL - SE PARE CA UTF16 E OK (NICI MACAR UTF-8 NU E BUN)
  4. ; SOFTUL ESTE AICI: https://www.autohotkey.com/
  5. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  6. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  7.  
  8. ^a::
  9. Send, â
  10. return
  11.  
  12. !a::
  13. Send, ă
  14. return
  15.  
  16. !1::
  17. Send, î
  18. return
  19.  
  20. !s::
  21. Send, ș
  22. return
  23.  
  24. !t::
  25. Send, ț
  26. return
Add Comment
Please, Sign In to add comment