mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2024-11-23 22:29:43 +00:00
28 lines
869 B
Plaintext
28 lines
869 B
Plaintext
|
'*************************************************************
|
||
|
'** Hello World example
|
||
|
'** 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)
|
||
|
|
||
|
'Create a scene and load /components/helloworld.xml'
|
||
|
scene = screen.CreateScene("HelloWorld")
|
||
|
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
|
||
|
|