0091: Not enough memory to allocate a local variable
The compiler fails to allocate an index for a new local variable. There is a limit to the number of variables that can be used within a script. Exceeding this limit will result in a run-time error.
Possible solutions:
- Optimize your script. Review your script's logic and attempt to use fewer variables. This can involve reusing variables when possible and eliminating redundant declarations.
Last modified 19d ago