Say, for example, I have these two:
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?
Say, for example, I have these two:
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?
m.screen.SetFocusedMenuItem(1)
Sweet, thank you!