Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #SingleInstance, Force
- /*
- Wirtten By: John Guglielmi
- Created:02/03/2022
- Last Edit: I should be doing hw rn...
- Description: Skip firwarnd & back on youtube vid open in another window
- Notes:https://new.reddit.com/r/AutoHotkey/comments/sk0h94/sending_media_controls_to_an_active_youtube_tab/
- */
- SetTitleMatchMode, 2
- #NoEnv
- SendMode Input
- #IfWinExist, YouTube ahk_exe chrome.exe
- !PGUP:: ;skip forward
- WinActivate
- Sleep 100
- Send, l
- Sleep 100
- WinRestore
- return
- !PGDN:: ;backward skip
- WinActivate
- Sleep 100
- Send, j
- Sleep 100
- WinRestore
- return
Add Comment
Please, Sign In to add comment