Forum Discussion
roquoonewbie
14 years agoVisitor
Is there some trick for getting the secondary overhang logo to show? I can't for the life of me get it to appear. Very simple function is below. Primary shows. Secondary does not.
Sub initTheme()
app = CreateObject("roAppManager")
theme = CreateObject("roAssociativeArray")
theme.OverhangPrimaryLogoOffsetHD_X = "123"
theme.OverhangPrimaryLogoOffsetHD_Y = "48"
theme.OverhangPrimaryLogoHD = "pkg:/images/Logo_Overhang_Roku_SDK_HD.png"
theme.OverhangSecondaryLogoOffsetHD_X = "373"
theme.OverhangSecondaryLogoOffsetHD_Y = "48"
theme.OverhangSecondaryLogoHD = "pkg:/images/my_logo_hd.png"
app.SetTheme(theme)
End Sub
Sub initTheme()
app = CreateObject("roAppManager")
theme = CreateObject("roAssociativeArray")
theme.OverhangPrimaryLogoOffsetHD_X = "123"
theme.OverhangPrimaryLogoOffsetHD_Y = "48"
theme.OverhangPrimaryLogoHD = "pkg:/images/Logo_Overhang_Roku_SDK_HD.png"
theme.OverhangSecondaryLogoOffsetHD_X = "373"
theme.OverhangSecondaryLogoOffsetHD_Y = "48"
theme.OverhangSecondaryLogoHD = "pkg:/images/my_logo_hd.png"
app.SetTheme(theme)
End Sub