jf-roku/components/home/Home.brs

18 lines
529 B
Plaintext
Raw Normal View History

sub init()
2021-07-09 20:08:32 +00:00
m.top.overhangTitle = "Home"
m.top.optionsAvailable = true
if get_user_setting("ui.home.splashBackground") = "true"
m.backdrop = m.top.findNode("backdrop")
m.backdrop.uri = buildURL("/Branding/Splashscreen?format=jpg&foregroundLayer=0.15&fillWidth=1280&width=1280&fillHeight=720&height=720&tag=splash")
end if
end sub
sub refresh()
m.top.findNode("homeRows").callFunc("updateHomeRows")
end sub
sub loadLibraries()
2021-07-09 20:08:32 +00:00
m.top.findNode("homeRows").callFunc("loadLibraries")
2022-05-30 12:57:40 +00:00
end sub