| View previous topic :: View next topic |
| Author |
Message |
3tones
Joined: 14 Dec 2004 Posts: 45 Location: Minneapolis, MN
|
Posted: Thu Apr 28, 2005 4:40 am Post subject: Stuck key when sending |
|
|
Can someone provide some insight to this?
| Code: |
VK SC Type Up/Dn Elapsed Key Window
--------------------------------------------------------------------------------------
74 03F i d 1624.58 F5 CDex Version 1.51
74 03F i u 0.00 F5
Press [F5] to refresh.
|
It is from the "Key History and Script Info" box when a script is running. I have the script pressing F5 with the following code:
| Code: |
IfWinExist, CDex
{
WinActivate, CDex
Send {F5}
}
|
It almost seems like the key get's stuck... or am I reading this wrong?
Thanks,
Tom |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10480
|
Posted: Thu Apr 28, 2005 12:13 pm Post subject: |
|
|
| The "Elapsed" column is the time since the previous keystroke. So the 1624.58 entry just means it was a long time since the script previously pressed a key (or since the script started). If the 1624.58 were instead listed with the U (up) event, that would mean the script had held the key down for a long time. |
|
| Back to top |
|
 |
3tones
Joined: 14 Dec 2004 Posts: 45 Location: Minneapolis, MN
|
Posted: Thu Apr 28, 2005 12:58 pm Post subject: |
|
|
| Thanks for clearing that up. |
|
| Back to top |
|
 |
|