I can’t figure out how to declare a global variable and call it from another area. Also I have funny things happening with the variables I am using regarding local stuff. Does anybody know if there is a tute on scope and lifetime on variables somewhere?
I wrote something up about that for one of the classes I taught; Ill see if I cant dig it up for you somewhere. But for a quick answer, global variables are defined with the prefix _global. Once you make a global variable, it is accessible from everywhere. For instance, to make the global variable called sealevel you would use:
_global.sealevel = 100;
Then in Any scope or any movieclip you can reference the variable sealevel and it will be 100 well 100 on 2 conditions 1) you have not changed the global sealevel from 100 to another value or 2) there isnt a variable already existant within that scope with the same name and a different value. What that means is that if you declare sealevel as a global but then give the movieclip ocean2 the variable sealevel and give it a value of something like 0…
ocean2.sealevel = 0
then calling sealevel in the scope of ocean2 will result in the value of 0 since THAT sealevel has precedence over the global. Basically what _global is, is a synonym for Object.prototype. For Flash 5, Object.prototype was the way to make a “global” variable. Its not exactly the same, but its close enough conceptually speaking. All core objects inherit from Object object so adding something to the Object.prototype means that all other objects (including movieclips) would inherit that variable and value - this is of course, again, unless over-ridden.
be careful though, when using a global variable, make sure to use it without any scope defining prefixes. Otherwise, flash will look for the variable of that name IN that scope and not globally. Basically its telling flash to use the over-ridden variable in that scope - but if it doesnt exist, undefined is returned. ex:
_global.a = “variable a”
trace(a); // traces “variable a”
trace(this.a); // traces undefined
a = “my very own a”
trace(a); // traces “my very own a”
trace(this.a); // traces “my very own a”
which ALSO means, if you ever want to change the value of a global variable you HAVE to precede it with _global or else a single variable within that scope of that name will be created overriding the global and not setting it.
to set
_global.gVariableName = value;
to reference
myValue = gVariableName;
This might be little help if all the scoping hoopla has still got you down… Ill see if I cant find that write-up I did…
ok let me ask if you got a sec.
in:
_global.a = 100;
this.onEnterFrame= function(){
b=a+100;
}
b would be 200
but this:
_global.a =100;
this.onEnterFrame= function(){
a=a+100;
b=a;
}
b would be 100.
and in this:
_global.a =100;
this.onEnterFrame= function(){
a=_global.a
a=a+100;
b=a;
}
b is 200 and
there is actually three different variables?
yes, that was what I explained above. If you DO NOT use _global before the variable when you set it, it doesnt refer to the global, but a standard basic variable specific to that scope
I get it, That is backwards to other languages.