I am pulling my hair out trying to get the secondary logo to show up on any screen. I even took the sample "paragraph" app which comes with the SDK.
I modified the initThem() function as shown below. The changes I made to the position of the primary logo worked. But adding the secondary logo does nothing. No matter what I do, it refuses to display.
Does anyone have any example of a secondary logo showing? Is this actually working, or is it a bug?
Sub initTheme()
app = CreateObject("roAppManager")
theme = CreateObject("roAssociativeArray")
theme.OverhangOffsetSD_X = "72"
theme.OverhangOffsetSD_Y = "25"
theme.OverhangSliceSD = "pkg:/images/Overhang_BackgroundSlice_Blue_SD43.png"
theme.OverhangLogoSD = "pkg:/images/Logo_Overhang_Roku_SDK_SD43.png"
'commented this section out
'theme.OverhangOffsetHD_X = "123"
'theme.OverhangOffsetHD_Y = "48"
'theme.OverhangSliceHD = "pkg:/images/Overhang_BackgroundSlice_Blue_HD.png"
'theme.OverhangLogoHD = "pkg:/images/Logo_Overhang_Roku_SDK_HD.png"
'adding new section here
theme.OverhangPrimaryLogoOffsetHD_X = "123"
theme.OverhangPrimaryLogoOffsetHD_Y = "78" 'primary logo shows up in new Y position
theme.OverhangSliceHD = "pkg:/images/Overhang_BackgroundSlice_Blue_HD.png"
theme.OverhangPrimaryLogoHD = "pkg:/images/Logo_Overhang_Roku_SDK_HD.png"
theme.OverhangSecondaryLogoOffsetHD_X = "323" 'secondary logo does not show up
theme.OverhangSecondaryLogoOffsetHD_Y = "48"
theme.OverhangSecondaryLogoHD = "pkg:/images/Logo_Overhang_Roku_SDK_HD.png"
'end of new section
app.SetTheme(theme)
End Sub