jf-roku/components/PlaybackDialog.brs

10 lines
172 B
Plaintext
Raw Normal View History

2023-02-09 00:58:05 +00:00
function onKeyEvent(key as string, press as boolean) as boolean
if key = "OK"
m.top.close = true
2023-02-09 01:36:41 +00:00
return true
2023-02-09 00:58:05 +00:00
end if
2023-02-09 01:36:41 +00:00
return false
2023-02-09 00:58:05 +00:00
end function