Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Requires AutoHotkey 2.0
- #include <UIA>
- F3::{
- WinActivate("Tabs Outliner ahk_exe chrome.exe")
- if !(chromeID:= WinWaitActive("Tabs Outliner ahk_exe chrome.exe",, 10))
- return
- chromeEl := UIA.ElementFromHandle(chromeID)
- chromeEl["V"].ControlClick("WD", 273, "NA") ; ControlClick is defined in UIA.ahk (it's doing wheeldown 273 times, at 274 it'll scroll upwards instead..)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement