Contents | Index | < Browse | Browse >
LOCAL var1/var2/var3...
This command allows the use of LOCAL variables, i.e. variables
which are visible only inside a given event.
This is usefull for small throw-away variables. You declare them
within the body of an event, separating them by slashes, and they
will not be visible or accessible to any other event.
Example :
xButton 10 10 60 12 'test'
Local a/b ; declare 2 local variables
a = 3 ; use them normally, together with other vars..
b == $a * $var ; they will not be visible outside this event
You can hit CONTROL-V for a full listing of all variables
used at any time.