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
Also, you can use "Action" for "Handler type" and still get event object:
But, this action must have an Input of type event which will receive this event object:
Backward compatibly notice:
Before, events like KEY, GESTURE, ROTARY and VALUE_CHANGED (in case of ButtonMatrix widget) were sending some specific data through event handler connection line (for example GESTURE even was sending gesture direction). Now, this is changed so that these events also sends event object, so for example you need to use Event.getGestureDir(event) to get the direction for GESTURE event.
The text was updated successfully, but these errors were encountered:
Send an event object through event handler connection line:
You can use following functions to get additional info about event:
Also, you can use "Action" for "Handler type" and still get event object:
But, this action must have an Input of type
event
which will receive this event object:Backward compatibly notice:
Before, events like KEY, GESTURE, ROTARY and VALUE_CHANGED (in case of ButtonMatrix widget) were sending some specific data through event handler connection line (for example GESTURE even was sending gesture direction). Now, this is changed so that these events also sends event object, so for example you need to use
Event.getGestureDir(event)
to get the direction for GESTURE event.The text was updated successfully, but these errors were encountered: