static public bool testQuickviewRunning() { string resp; XenonInterface.sendCommand(@"giveScenarioName()", out resp); if (resp.ToLower().Contains("quickview")) { return(true); } return(false); }
static public void reloadScenario() { string resp; XenonInterface.sendCommand(@"reloadScenario(true)", out resp); }
static public void launchScenerio(string scen) { string resp; XenonInterface.sendCommand(@"loadScenario(""" + scen + @""")", out resp); }