Home › Forums › Software Development › VB.net › Reply To: VB.net
05/09/2017 at 08:47 #7355
Participant
Code Update:
I make use of the key setup for use in the Tobii Eyetracking Utility. In my case, I use the CTRL key to the left of the keyboard as the Mouse skip key for use in interactable behaviour.
In my ONGAZE event handler, you can use the sendkeys function to automatically trigger the pressing of the key.
SendKeys.Send(“^a”)
Note: keys are case sensitive; the code above triggers the use of the left CTRL key.