jf-roku/components/PlaybackDialog.brs
2023-02-08 20:36:41 -05:00

10 lines
172 B
Plaintext

function onKeyEvent(key as string, press as boolean) as boolean
if key = "OK"
m.top.close = true
return true
end if
return false
end function