!7 cmodule SpeechCorrelator1 > DynPrintLog { switchable bool react; // react to new recording S startTime, endTime; //Interpretation bestInterpretation; sclass Interpretation { S by; O rank; } start { dm_onNewRecording(voidfunc(File f) enter { if (!react) ret; print("Have recording: " + f); //print(renderFileDateWithSeconds(f)); setField(startTime := regexpExtract("\\d{8}-\\d{6}", fileName(f))); print(+startTime); }); } visual centerAndSouthWithMargins(super, jrightaligned(dm_checkBox react())); }