Greetings all –
I am still learning quite a bit and I am sure this is a very simple question.
I am rebuilding our Roku channel to remove deprecated code and make some minor changes to the layout of the scene. I want to be able to change the background image of our scene depending on time of year without resubmitting our channel to the testers.
At the top of my scene in the first init I set the scene parameter m.top.backgroundURI = “http://myurl.com/myimage.jpg”. When I side load for testing on multiple Roku units the remote image comes up. But when I change the image on my web server for testing purposes, it does not update on the side loaded app. If I reboot my Roku and then side load again, it shows up.
Have I done something incorrectly? Is it because it is side loaded?
The image is publicly accessible from my server, so I know that is not the issue.
Any thoughts or help is appreciated.
Below is a snippet of the code used in my brs file: (not the actual image url)
sub init()
'To see print statements/debug info, telnet on port 8089
m.top.backgroundColor = "0x676e80"
m.top.backgroundUri = "http://myserver.com/roku/images/myimage.jpg"
