PennController for IBEX › Forums › Support › Having participants select more than one option in questions › Reply To: Having participants select more than one option in questions
October 25, 2021 at 12:31 pm
#7430
Keymaster
Hi Özge,
1) You can get rid of the .wait() command on the Scale element, and replace the Button element’s .wait() command with: .wait( getScale("answer").test.selected() )
2) You’re using the Var element in a non-standard way. I think what you want to do is:
Sequence("instructions", "intro", "practice1", "practice2", "practice3", "break", rshuffle("items", "fillers"), "increase", SendResults())
var sendingResultsMessage = "...";
var randomnumber = Math.floor(Math.random()*1000000));
var completionCode = String("IST" + randomnumber);
var completionMessage = "...: " + completionCode;
Header(
// ...
)
.log("completionCode", completionCode)
Jeremy