jcschoens
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2013
08:49 AM
Disable Breadcrumbs
I am tweaking the videoplayer example from the sdk and need to know how to disable the breadcrumbs as they are overlapping my Overhang_Background image. Any help would be greatly appreciated.
2 REPLIES 2


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2013
09:28 AM
Re: Disable Breadcrumbs
If you don't want breadcrumbs, then don't call SetBreadcrumbText()
jcschoens
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2013
11:17 AM
Re: Disable Breadcrumbs
So I deleted the call and it worked! Is there any other code in here that is superfluous? I'm wondering if the references to breadA & B also need to go.
Function preShowDetailScreen(breadA=invalid, breadB=invalid) As Object
if validateParam(breadA, "roString", "preShowDetailScreen", true) = false return -1
if validateParam(breadA, "roString", "preShowDetailScreen", true) = false return -1
port=CreateObject("roMessagePort")
screen = CreateObject("roSpringboardScreen")
screen.SetDescriptionStyle("video")
screen.SetMessagePort(port)
return screen
End Function