Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
antennaradio
Visitor

Remote logo on Overhang

HI All,

We are new to Roku and have a really simple question that we cant work out regarding the logo on overhang.

Using Hero-Grid-Channel as our basis:
https://github.com/rokudev/hero-grid-channel

We have been able to understand about 95% of what comes from where (how it all works etc).  The only thing we can't work out, where does the logo pull from at the top left?  I have looked for 'logoUri' and it is not specified in heroScene.xml - so is that why the default Roku logo is displayed.

What is the best way to pull our brand logo in from our webserver (example http://www.domain.com/apps/roku/images/logo.png) and can this be varied based on HeroScreen / DetailsScreen?

Thanks for your help in advance!
B
Feel the Mood, Love our Music
We are Antenna Radio
0 Kudos
4 REPLIES 4
joetesta
Roku Guru

Re: Remote logo on Overhang

Set logoUri of your overhang to your remote URL; https://sdkdocs.roku.com/display/sdkdoc/Overhang
If you don't specify anything (or annoyingly, even if you specify "") you get the default Roku logo there. To have it be blank I've had to use " " which triggers a warning in debug, but otherwise works. To avoid the warning guess you could come up with a blank png and specify that in the pkg images.
aspiring
0 Kudos
antennaradio
Visitor

Re: Remote logo on Overhang

Thanks for the fast reply.  I'm glad you mentioned about using 'logoUri=" "' that explains why I couldn't hide the default one.
Thats been really helpful, thanks!
Feel the Mood, Love our Music
We are Antenna Radio
0 Kudos
LuisSalazar
Visitor

Re: Remote logo on Overhang

Hi, After so much trying, I modified the heroscene.xml file located in: hero-grid-channel-master/components/heroscene.xml
I added the logoUri in the <!-- Overhang Node -->

    <Overhang
  logoUri="pkg:/images/logo.png"
      showClock="true"
      title="videos" />
0 Kudos
toesinthesand
Binge Watcher

Re: Remote logo on Overhang

"LuisSalazar" wrote:
Hi, After so much trying, I modified the heroscene.xml file located in: hero-grid-channel-master/components/heroscene.xml
I added the logoUri in the <!-- Overhang Node -->

    <Overhang
  logoUri="pkg:/images/logo.png"
      showClock="true"
      title="videos" />

Thanks for the help on this. I was banging my head against the wall on this one as well and searching what I thought was everything. Thank you!!
If were easy, everyone would do it. Problems are opportunities to learn, but there is a lot of banging your head against the wall to get there.
0 Kudos