For some reason, presses on the pause/rewind/fast-forward keys are not doing anything in my app.
Here's my onKeyEvent() function:
Function OnkeyEvent(key, press) as Boolean
print ">>> Details >> OnkeyEvent"
print key;" (";press;")"
result = false
if press
if m.videoPlayer <> invalid AND m.videoPlayer.visible
if key = "back"
print "DetailsScreen::back"
closePlayer()
result = true
end if
end if
end if
return result
End Function
The back key works, but pause/rewind/fast-forward do not.
What am I missing?