alexboyer
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2013
11:18 AM
Change default button selected
Say, for example, I have these two:
How would I make "Resume" selected by default without changing the order in which they appear?
m.screen.AddButton(0,"Play from Beginning")
m.screen.AddButton(1,"Resume")
How would I make "Resume" selected by default without changing the order in which they appear?
2 REPLIES 2
renojim
Community Streaming Expert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2013
11:51 AM
Re: Change default button selected
m.screen.SetFocusedMenuItem(1)
Roku Community Streaming Expert
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.
alexboyer
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2013
12:00 PM
Re: Change default button selected
Sweet, thank you!