zcode7
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2012
12:47 PM
Make "Loading" Display
Hi everyone,
Thanks for your help yesterday with my debug console issues!
I'm wondering if there's any way to display a "retrieving" screen immediately when an item is selected. Right now, things are just loading in the background until everything is loaded in then it abruptly switches to the next poster screen.
Any help is much appreciated.
Zach
Thanks for your help yesterday with my debug console issues!
I'm wondering if there's any way to display a "retrieving" screen immediately when an item is selected. Right now, things are just loading in the background until everything is loaded in then it abruptly switches to the next poster screen.
Any help is much appreciated.
Zach
2 REPLIES 2

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2012
02:55 PM
Re: Make "Loading" Display
...
If msg.isListItemSelected() Then
' Show "retrieving" facade
facade = CreateObject("roPosterScreen"
facade.ShowMessage("Loading content...")
facade.Show()
' Load content
....
Else If...
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
zcode7
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2012
09:17 AM
Re: Make "Loading" Display
Thanks!