scope | |
Type | glossary |
Dictionary | LCS |
Library | LiveCode Script |
Synonyms | scope,scoped,scoping |
Related | Glossary: variable, handler, global, script, local variable, declare, script local variable |
Description | The extent of places where a variable can be used. A variable's scope can be either local, script local, or global. A local variable can be used only in the current handler. A script local variable can be used in any handler in a script, but can't be used in handlers that are in other scripts. A global variable can be used in any handler where it's declared. |
Tags | properties |