=sinister= Posted August 19, 2006 Posted August 19, 2006 Wondering if possible (But pretty sure it's not) to actually left click twice in the same spot at once. Attempt that failed: MouseClick("Left") And MouseClick("Left") Any ideas?
MHz Posted August 19, 2006 Posted August 19, 2006 MouseClick ( "button" [, x, y [, clicks [, speed ]]] )
=sinister= Posted August 19, 2006 Author Posted August 19, 2006 Um that would click twice in a ROW. I want it to click twice at ONCE.
kjmarket Posted August 19, 2006 Posted August 19, 2006 (edited) It would be pointless to click twice at the same time. Besides...no computer could detect simultaneous mouseclicks. The best you could do is is 2 clicks one millisecond apart. Edited August 19, 2006 by kjmarket Pink Floyd - The Wall
Kickassjoe Posted August 19, 2006 Posted August 19, 2006 run 2 scripts at the same time that have hotkeys to click and then press the hotkey? does that make them both run? I think it would work if it did make them both run... and then whenever you wanted to click 2 times at once u could just make it send that hotkey in your main script? lol What goes around comes around... Payback's a bitch.
Xenobiologist Posted August 19, 2006 Posted August 19, 2006 run 2 scripts at the same time that have hotkeys to click and then press the hotkey? does that make them both run? I think it would work if it did make them both run... and then whenever you wanted to click 2 times at once u could just make it send that hotkey in your main script? lolHI,I think on a single processor pc it goes round robin, so that two scripts are not really running at same time. So long,Mega 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
=sinister= Posted August 19, 2006 Author Posted August 19, 2006 (edited) #include <Array.au3> $Number = 2 $Click1 = MouseClick("Left") $Click2 = MouseClick("Left") $Array = _ArrayCreate($Number, $Click1, $Click2) MouseClick($Array) Wouldn't making an array help? Wild guess, haven't tested, but I don't think it would work. Edited August 19, 2006 by =sinister=
Xenobiologist Posted August 19, 2006 Posted August 19, 2006 (edited) HI, I guess thats a complicated way for a normal but fast double click. So long, Mega Edited August 19, 2006 by th.meger 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
imbatmo Posted August 19, 2006 Posted August 19, 2006 #include <Array.au3> $Number = 2 $Click1 = MouseClick("Left") $Click2 = MouseClick("Left") $Array = _ArrayCreate($Number, $Click1, $Click2) MouseClick($Array) Wouldn't making an array help? Wild guess, haven't tested, but I don't think it would work.why inventing the wheel another time?
kjmarket Posted August 19, 2006 Posted August 19, 2006 Even if you could make one or more scripts to click twice at the same time, the pc wouldnt detect both clicks...only one would be detected. Pink Floyd - The Wall
Simucal Posted August 20, 2006 Posted August 20, 2006 What is the freaking point of this? AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
Azu Posted August 20, 2006 Posted August 20, 2006 You are basically trying to press two keys on your keyboard at EXACTLY the same nanosecond, in completely perfect unison, which alone is already pretty much impossible.. but not only that, you are expecting both signals to move through the wire and be interpreted by your computer simultaneously at exactly the same time in perfect sync. Not really possible. Might be possible with a dual core CPU but I don't think so.
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