I'm running v1.0.48.05, but this was also happening with .03.
If I call SendInput using a HotKey, then immediately hit another key in the middle of SendInput printing the data, the key is interspersed in the text.
According to the Help documentation SendInput should be buffering keys:
Reliability is further improved by the fact that anything the user types during a SendInput is postponed until afterward.
In addition, they buffer any physical keyboard or mouse activity during the send, which prevents the user's keystrokes from being interspersed with those being sent.
This happens for both regular keys and modifier keys (ie, if I hit shift the sent text will change case).
In the meantime I'm calling BlockInput before and after my SendInput command.
Also, I have only one script running, so there is no interference from other scripts.
*edit* SendPlay is working fine, I just tested that. My keystrokes aren't interfering when SendPlay is used...
*edit2* to make sure I wasn't reverting to SendEvent I added
SendMode, InputThenPlay
to my script. My keystrokes were still being interspersed.
My original thread is here:
http://www.autohotkey.com/forum/viewtopic.php?t=49258
in Ask for Help.
Thanks!