You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Callback function is passed state `0` (released) or `1` (pressed)
213
211
```
214
212
KeyEvent(state){
215
213
ToolTip % "State: " state
216
214
}
217
215
```
218
-
219
216
Parameter `<concurrent>` is optional and is <b>false</b> by default meaning that all the events raised for that key will be handled sequentially (i.e. callback function will be called on a single thread). If set to <b>true</b>, a new thread will be created for each event and the callback function will be called on it.
217
+
218
+
##### Subscribe to all keys on a specific keyboard
0 commit comments