"RokuChris" wrote:
"Sabertooth" wrote:
Thanks for your quick response.
Can I atleast change the boldness of the text?
No. You can change the color of the breadcrumb, but that's about it. http://sdkdocs.roku.com/display/sdkdoc/roAppManager
I'm trying to change the text color but I seem to be missing something. Can anyone give a syntax example? I'm plugging theme.BreadcrumbTextRight into my appMain.brs file but it's not changing the color.
The breadcrumb text is the top right text that displays as you go to deeper categories right?
Here's my code:
Sub initTheme()
app = CreateObject("roAppManager")
theme = CreateObject("roAssociativeArray")
theme.Background = "#e1e1e1"
theme.BreadcrumbTextRight = "FFFFFF"
theme.OverhangOffsetSD_X = "72"
theme.OverhangOffsetSD_Y = "31"
theme.OverhangSliceSD = "pkg:/images/Overhang_Background_SD.png"
theme.OverhangLogoSD = "pkg:/images/Overhang_Logo_SD.png"
theme.OverhangOffsetHD_X = "125"
theme.OverhangOffsetHD_Y = "35"
theme.OverhangSliceHD = "pkg:/images/Overhang_Background_HD.png"
theme.OverhangLogoHD = "pkg:/images/Overhang_Logo_HD.png"
app.SetTheme(theme)
End Sub