Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
- ; #Warn ; Enable warnings to assist with detecting common errors.
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
- SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
- ~MButton & ~RShift::Suspend, Toggle
- ; run apps
- MButton & 1::Run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
- MButton & 2::Run "C:\Program Files (x86)\TeamViewer\TeamViewer.exe"
- MButton & 3::Run "explorer.exe"
- MButton & 4::Run "wordpad.exe"
- MButton & 5::Run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
- ; killapps
- MButton & 6::Runwait, taskkill /im firefox.exe /f
- MButton & -::Runwait, taskkill /im TeamViewer.exe /f
- MButton & +::Runwait, taskkill /im explorer.exe /f
- MButton & 8::Runwait, taskkill /im wordpad.exe /f
- ; Speical Combos1
- !Tab::return ; Alt + Tab
- !Home::return ; Alt + Home
- !F4::return ; Alt + F4
- ^!Del::return ; Ctl + Alt + Del
- ^<Esc::return ; Ctl + Shift + Esc
- ; General Keys
- Esc::return
- ; Mouse
- RButton::return
- XButton1::return
- XButton2::return
- WheelDown::return
- WheelUp::return
- ; Modifier Keys
- LControl::return
- RControl::return
- LWin::return
- RWin::return
- LAlt::return
- RAlt::return
- ; Function Keys
- F1::return
- F2::return
- F3::return
- F4::return
- F5::return
- F6::return
- F7::return
- F8::return
- F9::return
- F10::return
- F11::return
- F13::return
- F14::return
- F15::return
- F16::return
- F17::return
- F18::return
- F19::return
- F20::return
- F21::return
- F22::return
- F23::return
- F24::return
- ; Multmedia keys
- Browser_Back::return
- Browser_Forward::return
- Browser_Refresh::return
- Browser_Stop::return
- Browser_Search::return
- Browser_Favorites::return
- Browser_Home::return
- Volume_Mute::return
- Volume_Down::return
- Volume_Up::return
- Media_Next::return
- Media_Prev::return
- Media_Stop::return
- Media_Play_Pause::return
- Launch_Mail::return
- Launch_Media::return
- Launch_App1::return
- Launch_App2::return
- ; Special Keys
- AppsKey::return
- PrintScreen::return
- CtrlBreak::return
- Pause::return
- Break::return
- Help::return
- Sleep::return
Advertisement
Add Comment
Please, Sign In to add comment