Hi Ralph
Sorry about this ,we found some problem with this.
Before the new version coming ,you can manual configuration the Space and Escape keys like this:
<Mute>
<Shift>0</Shift> // index shift key is press 0 is no, 1 is yes
<Ctrl>0</Ctrl> // index Ctrl key is press ,0 is no, 1 is yes
<Alt>0</Alt> // index Alt key is press ,0 is no, 1 is yes
<VirtualKey>119</VirtualKey> //This means the virtual key's code such as 0-9 or a - z ...
<Modifiers>0</Modifiers> // Shows Shift ,Ctrl and Alt key index, 4 2 1
// Alt Ctrl Shift,
//if the value is 6 means Ctrl and Alt is show in the edit control.
</Mute>
VirtualKey code is here include the Space key and Esc key.
http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspxAs you can see that Esc key is 0x1B,so you can config it like this:
<VirtualKey>27</VirtualKey>
Any question about this please feel free to contact me.
Kind Regards
steven