Limitations

Every effort has been made to ensure your application operates the same way in test mode and with the runtime engine. However, there are two limitations you should be aware of.

To allow running in test mode, you may need to write two versions of specific sections of sanScript code. One version will be designed to run in test mode, and the other will be designed to work with the runtime engine. You can use the following code to determine whether code is being executed in test mode or with the runtime engine:

if Launch_GetFileName() <> "" then
	{Runtime engine is being used}
else
	{Test mode is being used}
end if;


Documentation Feedback