Hello Me You Posted February 20, 2007 Posted February 20, 2007 (edited) Why the following script doesn't work? #include <Misc.au3> HotKeySet("^!r", "gz_rocket") While 1 WEnd Func gz_rocket() If _IsPressed("01") Then Send("{NUMPAD3}") EndIf EndFunc Edited February 20, 2007 by Hello Me You Random
gamepin126 Posted February 20, 2007 Posted February 20, 2007 (edited) #include <misc.au3> While 1 If _IsPressed("01") Then Send("{NUMPAD3}") EndIf WEnd Edited February 20, 2007 by gamepin126
Hello Me You Posted February 20, 2007 Author Posted February 20, 2007 (edited) #include <misc.au3> While 1 If _IsPressed("01") Then Send("{NUMPAD3}") EndIf WEnd i want it as as a hotkey so i can activate and deactivate it Edited February 20, 2007 by Hello Me You Random
Shevilie Posted February 20, 2007 Posted February 20, 2007 (edited) Read the other post in your other thread And read about Func EndFunc Edited February 20, 2007 by Shevilie Start here if you are new Valuater's AutoIT 1-2-3Looking for an UDF - Look hereDo you need to do it twice - Autoit
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