ov2015
10 years agoVisitor
understanding GetGlobalAA
My program has an array which is created by calling an API. I would like to store this array in some global variables so that I do not have to access the API every time. While on course of research I found GetGlobalAA and I am finding hard to understand GetGlobalAA functionality and how it can be used. ROKU documentation only has a single line description and is not enough for me.
I tried using "m." operator but getting invalid value
I tried using "m." operator but getting invalid value
Sub Main()
...
m.myval = "some value"
...
End Main
Sub Func()
...
print m.myval
...
End Func