In the documentation, the Panel is shown as having a touch event.
In the Designer Window when I Create Members, my panels only show Click and LongClick.
Does this mean that the Panel_Touch event is not available?
I tried adding it manually,
Sub pnlBoard_Touch(Action AsInt, tx AsFloat, ty AsFloat)
Msgbox("x = " & tx & " y = " & ty, "Coords")
Log("x = " & tx & " y = " & ty)
End Sub
but it does not seem to be triggered.
BTW, what is the difference between Touch & Click events?
In the Designer Window when I Create Members, my panels only show Click and LongClick.
Does this mean that the Panel_Touch event is not available?
I tried adding it manually,
Sub pnlBoard_Touch(Action AsInt, tx AsFloat, ty AsFloat)
Msgbox("x = " & tx & " y = " & ty, "Coords")
Log("x = " & tx & " y = " & ty)
End Sub
but it does not seem to be triggered.
BTW, what is the difference between Touch & Click events?