07-18-2024, 12:55 PM
(07-02-2024, 02:39 PM)denilama Wrote: What exact code did you use?
What is your AutoHotkey version?
it seems the browser was the problem, script does nothing on Firefox, Im using AutoHotKey v1.1.37.02 thats included with latest ShortKeeper version
code I used
Quote:Code:LastTitleMatchMode := A_TitleMatchMode
SetTitleMatchMode 2
if WinActive("Google Search")
{
Send ^l
Sleep 200
SendInput javascript: document.getElementById("pnnext").click()
Sleep 200
Send {enter}
}
SetTitleMatchMode %LastTitleMatchMode%

