butterstick Posted June 11, 2006 Posted June 11, 2006 hey... i need to make a script that stays idel until i hit the ~ button and then it will click where the mouse is located 100 times but still stay idel after it clicks 100 times.... how can i do this?
Xenobiologist Posted June 11, 2006 Posted June 11, 2006 (edited) HI, try this: #include <Misc.au3> $dll = DllOpen("user32.dll") While 1 Sleep(20) If _IsPressed("30", $dll) Then $pos = MouseGetPos() MouseClick("left", $pos[0] ,$pos[1], 100, 0) EndIf WEnd DllClose($dll) The key is 0 not ~ :"> So long, Mega Edited June 11, 2006 by th.meger Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now