jf-roku/components/collections/scene.brs
2019-10-17 20:52:26 -05:00

14 lines
299 B
Plaintext

sub init()
m.top.overhangTitle = "Collections"
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