Hi is there a way store the variables globally.
I mean to say If i declare a variable I want access it in all functions.
Presently to access the values in different functions Iam writting below code.Plz suggest is this Correct method
function one()
{
m.variable=1
}
function two()
{
print m.variable 'output is 1
}
If you want to use a variable that is accessed throughout your file say “Test.brs”, then the code that you mention above is true. I dont know about the application wise global variables..
There are no global variables, but there is a “global m scope”… Meaning that the scope of m that is not in an object scope is shared by all static functions that are not part of an object. This is the scope of the Main() function.
so…
Function Main()
m.variable = 100
…
End Function
Function One()
m.variable = 1
End Function
Function Two()
print m.variable 'output is 1
End Function
If this is not working for you, check that One() and Two() are not methods of different objects…