EliTe_ThuT Posted April 26, 2007 Posted April 26, 2007 Hey, I would like to know where i can download the _ControlMousePlus() function Thx
Bert Posted April 26, 2007 Posted April 26, 2007 huh? where did you see this? I couldn't find anything in a search of the forum. The Vollatran project My blog: http://www.vollysinterestingshit.com/
Toady Posted April 26, 2007 Posted April 26, 2007 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
EliTe_ThuT Posted April 26, 2007 Author Posted April 26, 2007 (edited) 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 April 26, 2007 by EliTe_ThuT
Gabburd Posted April 26, 2007 Posted April 26, 2007 This will do what you're wanting, It's _MouseClickPlus:http://www.autoitscript.com/forum/index.php?showtopic=7112
PsaltyDS Posted April 26, 2007 Posted April 26, 2007 _ControlMousePlus() is used to send mouse commands to a minimized window...Where did you hear of that? Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Valuater Posted April 26, 2007 Posted April 26, 2007 Might want to look at this one from LarryClickInControl()8)
EliTe_ThuT Posted April 26, 2007 Author Posted April 26, 2007 (edited) Might want to look at this one from Larry Function Name: _MouseClickPlus()8)Oh, someone told me that it was name _controlMousePlus() ...thats why i could not find it...its exactly what i was looking for..lol Edited May 18, 2007 by EliTe_ThuT
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