andenagaveni24
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2014
05:37 AM
How to change the default overhang slice ???
i am a new roku developer ......i am not able to change the default overhang slice ?? how to change it ??? please do help ....
1 REPLY 1

RokuJoel
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2014
01:52 PM
Re: How to change the default overhang slice ???
You would use one of the theme properties used by roAppManager, please see:
http://sdkdocs.roku.com/display/sdkdoc/roAppManager
Generally speaking:
- Joel
http://sdkdocs.roku.com/display/sdkdoc/roAppManager
Generally speaking:
sub main()
InitTheme()
Poster=createobject("roPosterScreen")
Poster.setcontentlist([{},{},{}])
poster.show()
while true
print "hi, I'm running"
end while
end sub
function initTheme()
appman=createobject("roAppManager")
theme=createobject("roAssociativeArray")
theme.OverhangSliceHD="pkg:/images/overhang_hd.jpg"
theme.OverhangSliceSD="pkg:/images/overhang_sd.jpg"
appman.settheme(theme)
end function
- Joel