Quote:
Originally Posted by jonboy321
Are there any ahk scripts that can simulate a mouse click with a key stroke (specifically left mouse click)?
There seem to be programs that do this but they're all shareware and I really only need this basic function to get poker pad at least semi-working in a skin.
tia.
Its very easy to do yourself if you have AHK installed. For instance, to get your z key to simulate a left mouse click just put the following line in a new text file and save it as a .ahk file:
z::LButton
There are plenty of examples in the 'Remapping Keys and Buttons' topic in the AHK help file.