Vertex101 0 Posted July 21, 2019 it has been years since i have touched AutoIT and i am trying to get a script made so when i press my mouse 4 button it will then press 1-5 for me at once and i cant seem to figure it out :( Share this post Link to post Share on other sites
Jos 2,281 Posted July 21, 2019 57 minutes ago, Vertex101 said: i am trying to get a script made so when i press my mouse 4 button it will then press 1-5 for me at once and i cant seem to figure it out mmm... and this should be understandable for the average person like me? What about you try to try again to explain what you want, where it is for and what you have tried? Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
Xenobiologist 47 Posted July 22, 2019 #include <Misc.au3> #include <MsgBoxConstants.au3> Opt("SendKeyDelay", 0) Local $hDLL = DllOpen("user32.dll") While 1 If _IsPressed("05", $hDLL) Then Send('12345') ExitLoop EndIf Sleep(250) WEnd DllClose($hDLL) 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 Share this post Link to post Share on other sites