There should be an action "Retrieve last keyboard input"
For example (of use): (key bindings etc)
= Text1.Text = Keyboard.GetLastInput
that event would simulate like:
If I press J. then text1 will set to "J". Same goes for any key
____________________
Also, could do with a keyboard special conditions, For example: (the special inputs would be "Shift", "Ctrl", and "Alt")
+ On Keyboard.PressAnyKey:
= Text1.Text = Keyboard.GetLastSpecialInput & "+" & Keyboard.GetLastInput
that event would simulate like:
If I press Ctrl+J. then text 1 will set to "Ctrl+J".
If I press Ctrl+Shift+J. then text 1 will set to "Ctrl+Shift+J" etc.