Hi!
I'm currently trying to implement the practice session in such a way that participants must get the trial correctly in order to proceed; if they answered a practice trial incorrectly, they'll be provided a feedback to repeat the trial. An example of my practice trials is the following:
[["practice", 1], "Message", {transfer: 3000, html: {include: "1-1.html"}},
"Form", {html: { include: "1-2.html" }, q: " ", hasCorrect: "Yes"},
"Separator",{transfer: "keypress",
normalMessage: "That's correct! Press SPACE to continue.",
errorMessage: "Oops! That was the wrong answer! Press SPACE to try again."}],
So if participants answered correctly (in this case, "Yes"), they see the normalMessage and move on to the next practice trial. If they answered incorrectly (in this case, "No"), they will see the errorMessage and will be asked to repeat the trial.
Has anyone else implemented something like this for the practice session? Would it involve a conditional statement of some sort?
Thank you in advance!
Best,
Sherry