2019-01-30 04:19:27 +00:00
|
|
|
'*************************************************************
|
2019-01-30 14:59:27 +00:00
|
|
|
'** Hello World example
|
2019-01-30 04:19:27 +00:00
|
|
|
'** Copyright (c) 2015 Roku, Inc. All rights reserved.
|
|
|
|
'** Use of the Roku Platform is subject to the Roku SDK Licence Agreement:
|
|
|
|
'** https://docs.roku.com/doc/developersdk/en-us
|
|
|
|
'*************************************************************
|
|
|
|
|
|
|
|
sub Main()
|
|
|
|
print "in showChannelSGScreen"
|
|
|
|
'Indicate this is a Roku SceneGraph application'
|
|
|
|
screen = CreateObject("roSGScreen")
|
|
|
|
m.port = CreateObject("roMessagePort")
|
|
|
|
screen.setMessagePort(m.port)
|
|
|
|
|
2019-01-30 14:59:27 +00:00
|
|
|
'Create a scene and load a component'
|
|
|
|
scene = screen.CreateScene("ServerSelect")
|
2019-01-30 04:19:27 +00:00
|
|
|
screen.show()
|
|
|
|
|
|
|
|
while(true)
|
|
|
|
msg = wait(0, m.port)
|
|
|
|
msgType = type(msg)
|
|
|
|
if msgType = "roSGScreenEvent"
|
|
|
|
if msg.isScreenClosed() then return
|
|
|
|
end if
|
|
|
|
end while
|
|
|
|
end sub
|
|
|
|
|