jgoogs

AHKSubRedditReply

Feb 3rd, 2022 (edited)
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #SingleInstance, Force
  2. /*
  3. Wirtten By: John Guglielmi
  4. Created:02/03/2022
  5. Last Edit: I should be doing hw rn...
  6. Description: Skip firwarnd & back on youtube vid open in another window
  7. Notes:https://new.reddit.com/r/AutoHotkey/comments/sk0h94/sending_media_controls_to_an_active_youtube_tab/
  8. */
  9.  
  10. SetTitleMatchMode, 2
  11. #NoEnv
  12. SendMode Input
  13.  
  14. #IfWinExist, YouTube ahk_exe chrome.exe
  15.  
  16. !PGUP::                 ;skip forward
  17.     WinActivate
  18.     Sleep 100
  19.     Send, l
  20.     Sleep 100
  21.     WinRestore
  22. return
  23.  
  24. !PGDN::                 ;backward skip
  25.     WinActivate
  26.     Sleep 100
  27.     Send, j
  28.     Sleep 100
  29.     WinRestore
  30. return
  31.  
Add Comment
Please, Sign In to add comment