Search found 3 matches

by harmonysystems
28 Apr 2024, 12:26
Forum: Ask for Help (v2)
Topic: How to make AutoHotkey wait for a page to load?
Replies: 4
Views: 370

Error correction

@boiler, could you please correct an error in my original post? "microseconds" should be "milliseconds". Thanks
by harmonysystems
27 Apr 2024, 04:34
Forum: Ask for Help (v2)
Topic: How to make AutoHotkey wait for a page to load?
Replies: 4
Views: 370

Re: How to make AutoHotkey wait for a page to load?

The PageWaitReady test script for both AHK versions:

Code: Select all

#Requires AutoHotkey v1
Run https://autohotkey.com
WinWaitActive (o_o)
MsgBox The page is ready.

Code: Select all

#Requires AutoHotkey v2
Run("https://autohotkey.com")
WinWaitActive("(o_o)")
MsgBox("The page is ready.")
by harmonysystems
26 Apr 2024, 18:01
Forum: Ask for Help (v2)
Topic: How to make AutoHotkey wait for a page to load?
Replies: 4
Views: 370

How to make AutoHotkey wait for a page to load?

Over the years, many questions have been posted here asking how to make AutoHotkey wait for a page to load. The answers provided so far seem to be complicated and difficult to put into use. So here's a simple, easy solution. The basic idea: 1. Install a userscript manager browser extension. 2. Creat...

Go to advanced search