Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; F9: marks as 'already seen'
- ; F8: marks as 'don't recommend'
- ; usage: point mouse cursor at video on youtube's 'home' page. The video portion, not any of the icons on the thumbnail, just the center
- ; does not work with music mixes!
- ; 1.4: updated to recent youtube popup-redesign in 2023 summer-ish
- ; 1.6: updated to check color under cursor for clicking, added more waiting for dropdown menu to appear. WILL ONLY WORK IN NIGHT MODE!
- ; warning: the MouseMove-s are for 3440x1440 fullscreen, so adjust those as you need.
- ; 1807,836 is where the "I've already seen this" checkbox pops up.
- ; mark as "already saw" on youtube
- $F9::
- if WinActive("YouTube - Google Chrome") or WinActive("Youtube", "Chrome")
- {
- send {Click Right}
- sleep 150
- send {ESC}
- sleep 150
- send {tab}{tab}{tab}{space}
- sleep 150
- send {down}{down}{down}{down}{down}{space}
- MouseGetPos x, y
- MouseMove 1720,723
- sleep 200
- send {tab}{space}
- Loop
- {
- PixelGetColor, foundColor, 1720,723, Slow RGB
- if (foundColor = 0x212121)
- {
- send {Click}
- MouseMove 1807,836
- send {Click}
- sleep 50
- MouseMove %x%, %y%
- break
- }
- sleep 200
- }
- }
- else{
- send {F9}
- }
- Return
- ; mark as "don't show" on youtube
- $F8::
- if WinActive("YouTube - Google Chrome") or WinActive("Youtube", "Chrome")
- {
- send {Click Right}
- sleep 200
- send {ESC}
- sleep 200
- send {tab}{tab}{tab}{space}
- sleep 300
- send {down}{down}{down}{down}{down}{space}
- }
- else{
- send {F8}
- }
- Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement