Quote: Originally Posted by Austin
is it possible for digitalmods to i interact with letters written on the touch surface?
Not, in the current version, but I just exposed the on gesture event. You will be able to respond to gesture events in 1.0.5.4
Code:
'*******************************************************************************
'Module_OnGestureEvent
'DESC: Sent when a gesture is completed. Return TRUE if you process the gesture
' to prevent other modules from processing it.
'*******************************************************************************
Function Module_OnGestureEvent(eGM, lpszGesture, eFunctionRecognized)
'We generally only want to process recognition type events
If eGM = eGMRecognized Then
'Display a message box with the gesture string and the function,
module.MsgBox lpszGesture, app.GetFunctionName(eFunctionRecognized)
'Return true to signify we processed this event
Module_OnGestureEvent = True
Else
'Return false to allow streetdeck to process the gesture normally
Module_OnGestureEvent = False
End If
End Function