Reply To: Editing the link in InitiateRecorder()

PennController for IBEX Forums Support Editing the link in InitiateRecorder() Reply To: Editing the link in InitiateRecorder()

#6312
mg5171
Participant

Hi,
I’m having a similar issue as question 1 here. No matter how much I try to use .wait commands and test conditions, the continue button appears and is clickable before the recording has finished from the preceding trial. Any idea on what’s going on here?


Template(  
    variable => 
    
newTrial(
    newText('instructions', 'Please record the following words:')
        .print()
    ,
    newText('word', variable.text)  //show people all the words in text column
        .print()
    ,
    newVoiceRecorder("recorder") 
        .log()
        .record()
        .print()
        .wait()
    ,
    newButton("continue", "Click here to continue.")  
        .print()
        .wait(getVoiceRecorder("recorder").test.recorded())
    
));