Hi again,
It sounds like you're letting the
Cheers!
It sounds like you're letting the
ScriptInterruptedException
propagate out to a handler that displays the error message in a popup. To suppress that behavior, simply catch the exception:engine.Script.Quit = new Action(() => ScriptEngine.Current.Interrupt()); try { engine.Execute(codeThatCallsQuit); } catch (ScriptInterruptedException) { }