Advertisement
EiEich

Untitled

Nov 17th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. #SingleInstance force
  2. If A_WDay = 2
  3. {
  4. MsgBox, понедельник
  5. Hotkey, q, pn
  6. }
  7. If A_WDay = 3
  8. {
  9. MsgBox, вторник
  10. Hotkey, q, vt
  11. }
  12. If A_WDay = 4
  13. {
  14. MsgBox, среда
  15. Hotkey, q, sr
  16. }
  17. If A_WDay = 5
  18. {
  19. MsgBox, четверг
  20. Hotkey, q, ct
  21. }
  22. If A_WDay = 6
  23. {
  24. MsgBox, пятница
  25. Hotkey, q, pt
  26. }
  27. If A_WDay = 7
  28. {
  29. MsgBox, суббота
  30. Hotkey, q, sb
  31. }
  32. If A_WDay = 1
  33. {
  34. MsgBox, воскресенье
  35. Hotkey, q, vk
  36. }
  37. return
  38. pn:
  39. SendInput, ц
  40. return
  41. vt:
  42. SendInput, у
  43. return
  44. sr:
  45. SendInput, к
  46. return
  47. ct:
  48. SendInput, е
  49. return
  50. pt:
  51. SendInput, н
  52. return
  53. sb:
  54. SendInput, г
  55. return
  56. vk:
  57. SendInput, ш
  58. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement