Jump to content

_ControlMousePlus()


Recommended Posts

You mean _MouseMovePlus()???

Func _MouseMovePlus($X,  $Y, $dll = 0)
        Local $MOUSEEVENTF_MOVE = 0x1
    If $dll = 0 Then
    DllCall("user32.dll", "none", "mouse_event", _
            "long",  $MOUSEEVENTF_MOVE, _
            "long",  $X, _
            "long",  $Y, _
            "long",  0, _
        "long",  0)
    Else
    DllCall($dll, "none", "mouse_event", _
            "long",  $MOUSEEVENTF_MOVE, _
            "long",  $X, _
            "long",  $Y, _
            "long",  0, _
        "long",  0)
    EndIf
EndFunc

www.itoady.com

A* (A-star) Searching Algorithm - A.I. Artificial Intelligence bot path finding

Link to comment
Share on other sites

You mean _MouseMovePlus()???

Func _MouseMovePlus($X,  $Y, $dll = 0)
        Local $MOUSEEVENTF_MOVE = 0x1
    If $dll = 0 Then
    DllCall("user32.dll", "none", "mouse_event", _
            "long",  $MOUSEEVENTF_MOVE, _
            "long",  $X, _
            "long",  $Y, _
            "long",  0, _
        "long",  0)
    Else
    DllCall($dll, "none", "mouse_event", _
            "long",  $MOUSEEVENTF_MOVE, _
            "long",  $X, _
            "long",  $Y, _
            "long",  0, _
        "long",  0)
    EndIf
EndFunc
No i mean _ControlMousePlus(), i know there isn't any result in the search...that's why i posted...

_ControlMousePlus() is used to send mouse commands to a minimized window...

Edited by EliTe_ThuT
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...