Page 1 of 1

Issue msgbox and pause script

Posted: 24 Apr 2024, 09:41
by joefiesta
How can I present a MSGBOX and then, while it is still showing, PAUSE a script?

Re: Issue msgbox and pause script

Posted: 24 Apr 2024, 09:46
by mikeyww

Code: Select all

#Requires AutoHotkey v1.1.33.11
SetTimer Wait, -100
MsgBox
Return

Wait:
Pause On
Return