[Go to list]
[Previous]
[Next]
Reset SPL engine
1. Create global variables
Select "Application" tab.
Type below script on the editor.
clear a = 100 b = 200 print a + b
Click "Send to MF Application" button or Press "F5" key.
Executed result:
2. Test global variables
Type below script on the editor.
clear print a * b
Click "Send to MF Application" button or Press "F5" key.
Executed result:
3. Reset SPL Engine
"reset" command clears all objects and variables within SPL engine.
Type below script on the editor.
clear reset print a * b
Click "Send to MF Application" button or Press "F5" key.
Executed result:
Above result shows all variables were removed after calling "ResetEngine" command. So referencing variable after reset engine causes error message.
[Go to list]
[Previous]
[Next]