Reply To: Help with recording audio?

PennController for IBEX Forums Support Help with recording audio? Reply To: Help with recording audio?

#10554
Larissa_Cury
Participant

Ohhh, all right! Thank you! I’m trying to change the default text of the failure message, but it isn’t chaning…is there anything I could do? I can change the message on the button trial, but even if I change the message before it, it doens’t appear different in the experiment:


newTrial(
    newFunction("check upload", ()=>PennController.uploadRecordingsError)
        .test.is()
        .success(
            newText("confirmation", "The recordings were sent to the server. ")
                .print()
        )
        .failure(
            newText("error", "Click on the link below to store data 👇")  //////////////////////// HERE -> it doens't change!
                .color("red")
                .print()
        )
    // ,
    // newText("download", DownloadRecordingButton("Click here to download an archive of your recordings.") )
    //     .print()
    // ,
    // newTimer("inifinite", 0)
    //     .wait()
)
  • This reply was modified 11 months, 2 weeks ago by Larissa_Cury. Reason: adding question
  • This reply was modified 11 months, 2 weeks ago by Larissa_Cury. Reason: add code