If you need to know if your script is being executed by InScript, you can use the following line of JavaScript source code:
isInScript = (window.ScriptEngine) ? (ScriptEngine().indexOf("InScript") !=
-1) : false;
However, it is far better style to check for the presence of certain properties - just as the line above does with "... (window.ScriptEngine) ? ...
".
There is an easy way of displaying debug output with InScript:
if (self.debug) { debug("This text is written to the Java/InScript console."); }
This also works in the automatic proxy configuration environment!
Impressum | Datenschutzerklärung — Letzte Änderung: 06.12.2004