I am trying to set the height of the overhang on a grid screen, but I cannot seem to make it happen. When I set the GridScreenOverhangHeightHD property, nothing happens. I've tried sizes ranging from 20 up to 100, but the overhang size never changes.
Does anyone know why the overhang height isn't changing?
Sub initGridTheme()
app = CreateObject("roAppManager")
theme = CreateObject("roAssociativeArray")
theme.GridScreenLogoOffsetSD_X = "72"
theme.GridScreenLogoOffsetSD_Y = "35"
theme.GridScreenOverhangSliceSD = "pkg:/images/header_slice_sd.png"
theme.GridScreenLogoSD = "pkg:/images/logo.png"
theme.GridScreenOverhangHeightSD = "90"
theme.GridScreenLogoOffsetHD_X = "123"
theme.GridScreenLogoOffsetHD_Y = "40"
theme.GridScreenBackgroundColor = "#323232"
theme.GridScreenOverhangHeightHD = "90"
theme.GridScreenOverhangSliceHD = "pkg:/images/header_back_hd.png"
theme.GridScreenLogoHD = "pkg:/images/logo.png"
app.SetTheme(theme)
End Sub