Guest User

Untitled

a guest
Jul 11th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6. ~MButton & ~RShift::Suspend, Toggle
  7.  
  8. ; run apps
  9. MButton & 1::Run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
  10. MButton & 2::Run "C:\Program Files (x86)\TeamViewer\TeamViewer.exe"
  11. MButton & 3::Run "explorer.exe"
  12. MButton & 4::Run "wordpad.exe"
  13. MButton & 5::Run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
  14.  
  15. ; killapps
  16.  
  17. MButton & 6::Runwait, taskkill /im firefox.exe /f
  18. MButton & -::Runwait, taskkill /im TeamViewer.exe /f
  19. MButton & +::Runwait, taskkill /im explorer.exe /f
  20. MButton & 8::Runwait, taskkill /im wordpad.exe /f
  21.  
  22.  
  23.  
  24. ; Speical Combos1
  25. !Tab::return ; Alt + Tab
  26. !Home::return ; Alt + Home
  27. !F4::return ; Alt + F4
  28. ^!Del::return ; Ctl + Alt + Del
  29. ^<Esc::return ; Ctl + Shift + Esc
  30.  
  31. ; General Keys
  32. Esc::return
  33.  
  34.  
  35. ; Mouse
  36. RButton::return
  37. XButton1::return
  38. XButton2::return
  39. WheelDown::return
  40. WheelUp::return
  41.  
  42.  
  43. ; Modifier Keys
  44. LControl::return
  45. RControl::return
  46. LWin::return
  47. RWin::return
  48. LAlt::return
  49. RAlt::return
  50.  
  51.  
  52. ; Function Keys
  53. F1::return
  54. F2::return
  55. F3::return
  56. F4::return
  57. F5::return
  58. F6::return
  59. F7::return
  60. F8::return
  61. F9::return
  62. F10::return
  63. F11::return
  64. F13::return
  65. F14::return
  66. F15::return
  67. F16::return
  68. F17::return
  69. F18::return
  70. F19::return
  71. F20::return
  72. F21::return
  73. F22::return
  74. F23::return
  75. F24::return
  76.  
  77. ; Multmedia keys
  78. Browser_Back::return
  79. Browser_Forward::return
  80. Browser_Refresh::return
  81. Browser_Stop::return
  82. Browser_Search::return
  83. Browser_Favorites::return
  84. Browser_Home::return
  85. Volume_Mute::return
  86. Volume_Down::return
  87. Volume_Up::return
  88. Media_Next::return
  89. Media_Prev::return
  90. Media_Stop::return
  91. Media_Play_Pause::return
  92. Launch_Mail::return
  93. Launch_Media::return
  94. Launch_App1::return
  95. Launch_App2::return
  96.  
  97. ; Special Keys
  98. AppsKey::return
  99. PrintScreen::return
  100. CtrlBreak::return
  101. Pause::return
  102. Break::return
  103. Help::return
  104. Sleep::return
Advertisement
Add Comment
Please, Sign In to add comment