XKCDViewer/source/Main.brs

21 lines
509 B
Text
Raw Normal View History

2023-12-18 03:33:33 +00:00
sub Main()
print "in showChannelSGScreen"
'Indicate this is a Roku SceneGraph application'
screen = CreateObject("roSGScreen")
m.port = CreateObject("roMessagePort")
screen.setMessagePort(m.port)
scene = screen.CreateScene("BigScene")
screen.show()
2023-12-18 04:51:49 +00:00
m.currentScene = scene
2023-12-18 03:33:33 +00:00
while(true)
msg = wait(0, m.port)
msgType = type(msg)
if msgType = "roSGScreenEvent"
if msg.isScreenClosed() then return
end if
end while
end sub