OnKeyUp for iOS
Posted: Fri Jan 03, 2020 7:12 pm
I use this function and it works well on Desktop platform& How I can use it on iOs? There are no left key on iOS keyboard, and left may possible by long tap an space and swap to left. Are any way to check this event?
Code: Select all
Function p_HandlerFunc(msg)
Switch(msg.action)
Case "OnKeyUp":
If msg.key = "LEFT"
SystemRequest("Attention", "Left ","OK",#REQICON_WARNING)
EndIf
EndSwitch
EndFunction
InstallEventHandler({ActiveWindow = p_HandlerFunc,
OnKeyUp = p_HandlerFunc})
Repeat
WaitEvent
Forever