in the "Simple Sign Up" sample app, in RokuBillingTask.brs, there is a function that brings up a new screen:
[size=100][/size]
sub GetPartialUserData()
port = CreateObject("roMessagePort")
channelStore = CreateObject("roChannelStore")
channelStore.SetMessagePort(port)
m.top.partialUserData = channelStore.GetPartialUserData("email") '<===BRINGS UP NEW SCREEN
end sub
Stepping through in the debugger, I see the new screen comes up when the following line is executed:
m.top.partialUserData = channelStore.GetPartialUserData("email")
I'm reading the docs but I haven't yet found a page that explains this. How does this bring up a new screen? It appears to just assign a value to the variable `
m.top.partialUserData`.Thanks in advance to all for any info and/or links to appropriate pages in the docs.