Forum Discussion
taylorcw
8 years agoStreaming Star
Thanks for the replies. This new screengraph programming is going to kill me with nuances like this.
tim_beynart -- i used your suggestion and it worked.
Output:
I was able to to Push into a local array followed by m.global.accessToken replace on other nodes which seems to be working.
Thanks guys!
tim_beynart -- i used your suggestion and it worked.
testArray=createObject("roArray", 0, true)
testArray.Push("testing_123")
m.global.addFields( {accessToken: []} )
m.global.accessToken = testArray
print "Array Count: "; m.global.accessToken.Count()
print "Array Data: "; m.global.accessToken
Output:
Array Count: 1
Array Data: <Component: roArray> =
[
"testing_123"
]
I was able to to Push into a local array followed by m.global.accessToken replace on other nodes which seems to be working.
Thanks guys!