View Single Post
  #10  
Old 07-26-2005, 08:49 PM
zerosum zerosum is offline
Member
 
Join Date: Sep 2004
Posts: 40
Default Left Mouse Click + Space Bar

Here's your script. Copy/paste the script between the lines in the code area below into a text editor such as notepad and add *.ahk* to the end of the name you give the file before you save it. Example: mouseclick.ahk

You'll need to install the AutoHotKey program to use the script.
<http://www.autohotkey.com/>

If you save your ahk file to your desktop, you can activate it with the standard double click. The file will be represented by a document icon that has an uppercase *H* on it. The AutoHotKey program will load automatically and initiate your script. After that, start banging your space bar.[img]/images/graemlins/grin.gif[/img]

Hope this helps.

----CODE------------------------------------

Space::
CoordMode, Mouse, Screen
MouseClick
return

----CODE------------------------------------
Reply With Quote