2021-06-26 10:18:09 +00:00
|
|
|
sub init()
|
2019-10-05 07:50:05 +00:00
|
|
|
' backgroundUri must be set to an empty string before backgroundColor can be set
|
|
|
|
m.top.backgroundUri = ""
|
2020-02-20 22:23:45 +00:00
|
|
|
m.top.backgroundColor = "#000000"
|
2019-10-05 07:50:05 +00:00
|
|
|
|
|
|
|
m.PosterOne = m.top.findNode("PosterOne")
|
|
|
|
m.PosterOne.uri = "pkg:/images/logo.png"
|
|
|
|
|
|
|
|
m.BounceAnimation = m.top.findNode("BounceAnimation")
|
|
|
|
m.BounceAnimation.control = "start" 'Start BounceAnimation
|
2022-06-13 12:43:53 +00:00
|
|
|
|
|
|
|
if get_user_setting("ui.screensaver.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
|
2022-05-30 12:57:40 +00:00
|
|
|
end sub
|