Jump to content

Mouse Press Event


Recommended Posts

  • Developers
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.
  :)

Link to comment
Share on other sites

#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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...