Solved
Forum Discussion
renojim
6 years agoCommunity Streaming Expert
I think I know what you're trying to do, but I'm not sure. To access a label in a scene from main.brs, you have to get to it via the scene:
sg = createObject("roSGScreen")
scene = sg.createScene("myScene")
label = scene.findNode("myLabel")
print label.text ' prints current value
label.text = "New text" ' set label text
-JT
azimuth
6 years agoReel Rookie
Yes that was exactly what I was trying to do... thanks!