Forum Discussion
squirreltown
11 years agoRoku Guru
It's just an associative array, but you don't need to pass it around, its built into BS.
m.thing = 0
Now I can use m.thing anywhere in any function.
It's the same as doing
I think there are some who frown on using it, but I can't see why so they can weigh in themselves.
As it's just an array, I don't think memory applies any differently, m.bitmap still behaves as any bitmap would.
m.thing = 0
Now I can use m.thing anywhere in any function.
It's the same as doing
varr={ thing:0}
Sub myFunction( varr as object)
varr.thing = varr.thing+1
End Sub
I think there are some who frown on using it, but I can't see why so they can weigh in themselves.
As it's just an array, I don't think memory applies any differently, m.bitmap still behaves as any bitmap would.