this code
<?xml version = "1.0" encoding = "utf-8" ?>
<!--********** Copyright 2016 Roku Corp. All Rights Reserved. **********-->
<component name = "LabelListExample" extends = "Scene" initialFocus = "Buttons" >
<script type = "text/brightscript" >
<![CDATA[
sub init()
m.top.backgroundURI = "pkg:/images/rsgde_bg_hd.jpg"
example = m.top.findNode("Buttons")
m.top.setFocus(true)
end sub
' on Button press selected
Sub onItemSelected()
' first button is Play
print "Boton "; m.top.itemSelected
if m.top.itemSelected = 0
'print "Second 1 "
else if m.top.itemSelected = 1
'print "Second 2 "
end if
End Sub
]]>
</script>
<interface>
<!-- Button press handler -->
<field id="itemSelected" type="integer" alwaysnotify="true" alias="Buttons.itemSelected" onChange="onItemSelected" />
</interface>
<children >
<LabelList
id="Buttons"
focusRow = "0"
itemSize = "[440,48]"
translation="[150,150]"
color="0xFFFFFFFF"
focusedColor="0x333333FF"
numRows="5"
sectionDividerHeight = "48.0"
sectionDividerFont = "font:MediumBoldSystemFont"
sectionDividerTextColor = "0x880088FF">
<ContentNode role = "content" >
<ContentNode title = "Menu 1"/>
<ContentNode title = "Menu 2"/>
</ContentNode>
</LabelList>
</children>
</component>
How can I make it to enter another scene