Advertisement
Guest User

Untitled

a guest
Jun 15th, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. ; This is a combination of two good AHK scripts that lets you switch between open tabs in your browser and open windows for the latest version of AutoHotKey
  2.  
  3. ;press 1 to switch between active window screens
  4. 1::
  5. WinGetClass, ActiveClass, A
  6. WinSet, Bottom,, A
  7. WinActivate, ahk_class %ActiveClass%
  8. return
  9.  
  10. ;press 2 to switch between active tabs inside your browser
  11. 2::Send {LCtrl down}{Tab}{LCtrl up}
  12.  
  13. ; This is a direct link to WindowPadX, its an AHK script that lets you control your windows and minimize them easily. Download the zip and read the readme file for more info
  14.  
  15. https://github.com/hoppfrosch/WindowPadX
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement