Advertisement
tabnation

intro 2

Feb 24th, 2021
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. SetTitleMatchMode, 2
  2.  
  3. a::b
  4. c::o
  5.  
  6. f1::
  7. Send ^v
  8. Return
  9.  
  10. ; LButton - left mouse
  11. ; ! - Alt
  12. ; # - winkey
  13. ; ^ - Contral
  14. ; + - Shift
  15. ; & - Two keys for hotkey
  16.  
  17. q & w::
  18. msgbox, hi
  19. Return
  20.  
  21. f2::
  22. Msgbox, %A_Ahkversion%
  23. Return
  24.  
  25.  
  26. f3::
  27. IfWinactive, Notepad
  28. {
  29. Msgbox, Notepad is active
  30. }
  31. Else
  32. {
  33. Msgbox, Notepad is NOT active
  34. winactivate, Notepad
  35. }
  36. Return
  37.  
  38. f4::
  39. Ifwinexist, Chrome
  40. {
  41. Msgbox, Chrome is around
  42. }
  43. Else
  44. {
  45. Msgbox, Sorry Chrome is NOT around
  46. }
  47. Return
  48.  
  49. f5::
  50. Suspend
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement