2019-05-03 13:27:51 +00:00
|
|
|
sub init()
|
2019-10-12 21:00:07 +00:00
|
|
|
m.top.overhangTitle = "Movies"
|
2019-10-13 22:10:23 +00:00
|
|
|
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
|