Re: run after user click

"valery_vi" <[email protected]> Thu, 30 Aug 2007 11:00:37 -0000
Newsgroups gmane.comp.windows.autoit.user
Message-ID <[email protected]>
Other variant is hooking of mouse click by DLL. 
See, for example, how Larry can do it here:

http://www.autoitscript.com/forum/index.php?showtopic=23173&st=0

Valery

--- In [email protected], "valery_vi" <shehrer1@...> wrote:
>
> You can show prompt's MsgBox to ask about it
> (See example Notepad1.au3 ):
> 
> ; Prompt the user to run the script - use a Yes/No prompt
> $answer = MsgBox(4, "Your Example", "This script will continue. Yes?")
> 
> ; Check the user's answer to the prompt
> ; If "No" was clicked (7) then exit the script
> If $answer = 7 Then
>     MsgBox(0, "AutoIt", "OK.  Bye!")
>     Exit
> EndIf
> 
> After user click button Yes your script will be continued
> 
> Valery
> 
> --- In [email protected], aris_azie <no_reply@> wrote:
> >
> > hi there...
> > can anyone help me how to determine if user already click a mouse or 
> > not so i can continue my script after a mouse already click.
> > TQ.
> >
>