jf-roku/components/tvshows/TVShows.brs
2020-03-18 09:10:31 +00:00

14 lines
262 B
Plaintext

sub init()
end sub
function onKeyEvent(key as string, press as boolean) as boolean
if not press then return false
if key = "down"
m.top.lastFocus = m.top.focusedChild
m.top.findNode("paginator").setFocus(true)
end if
return false
end function