Advertisement
tabnation

intro 7

Feb 25th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. SetTitleMatchMode, 2
  2. ; ------google search------
  3. f1::
  4. clipboard=
  5. send ^c
  6. If clipboard =
  7. {
  8. Return
  9. }
  10. Run, http://www.google.com/search?q=​%clipboard%
  11. Return
  12.  
  13. ; ------hotkey combo------
  14. 9 & 0::
  15. msgbox, You pressed both 9 and 0
  16. Return
  17.  
  18. ;------send normal key and hotkey------
  19. ~l::
  20. msgbox, I typed L and triggered hotkey
  21. Return
  22.  
  23. ;------open more tabs based of current------
  24. f2::
  25. Send ^l
  26. Send ^c
  27. If clipboard contains google
  28. {
  29. Run, https://www.youtube.com/user/tadamm​
  30. }
  31. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement