john tuomi
Joined: 22 May 2006 Posts: 150
|
Posted: Tue Feb 02, 2010 8:33 pm Post subject: Looking to track and count keystrokes |
|
|
I currently use a script to capture each time a keyer presses F1, which is a trigger for a different script. By counting these F1 presses, I can tell how many pages the keyer has completed.
There is now a need to count all keystrokes instead. I was wondering if there was an easy way to accomplish this with the file that I currently use, or will it require a complete re-writing of the script.
| Code: | ~F12::
IniRead, F12,Job QC.XLS,Apps QC'd,F12
If F12_Count=Error
F12_Count=0
F12_Count+=1
IniWrite,%A_now%¬%pname%¬%Title%¬%KC%%F12_Count%,Job QC.XLS,Apps QC'd,Apps QC'd
Return |
|
|