babuhari123
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2012
11:57 PM
Which screen to be use to make Setting to our application
Hi friends,
I want to make some setting to my application just like roku setting app
can any one tell me which screen to be use to make setting
its better is any code snippet for me
Please help me.........
I want to make some setting to my application just like roku setting app
can any one tell me which screen to be use to make setting
its better is any code snippet for me
Please help me.........
3 REPLIES 3
germix
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2012
03:29 AM
Re: Which screen to be use to make Setting to our applicatio
You can use roListScreen (http://sdkdocs.roku.com/pages/viewpage. ... Id=2523576)
mumme
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2012
01:22 PM
Re: Which screen to be use to make Setting to our applicatio
port = CreateObject("roMessagePort")
screen = CreateObject("roListScreen")
screen.setMessagePort(port)
screen.show()
screen.SetContent([
{title:"Item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"The third item"}
])
Do you guys know how to set a poster for each title? Or how I can add an image on the right side of the menu?
screen = CreateObject("roListScreen")
screen.setMessagePort(port)
screen.show()
screen.SetContent([
{title:"Item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"Another item"},
{title:"The third item"}
])
Do you guys know how to set a poster for each title? Or how I can add an image on the right side of the menu?


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2012
01:41 PM
Re: Which screen to be use to make Setting to our applicatio
"mumme" wrote:
Do you guys know how to set a poster for each title? Or how I can add an image on the right side of the menu?
roListScreen uses the sdPosterURL and hdPosterURL attributes of the content-meta-data structure just like other screen types. http://sdkdocs.roku.com/display/RokuSDK ... +Meta-Data