Jump to content

Recommended Posts

Posted (edited)

How could I get the script to pause untill the user clicks (anywhere)?

well, is there a command for it anyway?

Edited by P a R a D o X

If I hadn't said thank you yet, and you deserve it, than thank you...

Posted (edited)

k thanks all, but now how do I make this repeat, so that every time I click it would say "done!"? I tried putting buth of the scripts into a While 1 loop but it just says I dont have a WEND to go with it..

EDIT: Nvm thanks, I found it

Edited by P a R a D o X

If I hadn't said thank you yet, and you deserve it, than thank you...

Posted (edited)

k thanks all, but now how do I make this repeat, so that every time I click it would say "done!"? I tried putting buth of the scripts into a While 1 loop but it just says I dont have a WEND to go with it..

EDIT: Nvm thanks, I found it

Oh, we thought you just wanted it to pause until it was clicked.

While 1
    If _IsPressed("01") Then
        MsgBox(0,"","You Clicked!")
    EndIf
    Sleep(100)
WEnd

EDIT: Sorry, Missed your edit..

Edited by Paulie

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...