PennController for IBEX › Forums › Support › Correct/Incorrect answers in .csv file › Reply To: Correct/Incorrect answers in .csv file
December 5, 2022 at 11:37 pm
#9771

Keymaster
Hi,
You could add this before your Scale element: newVar("CORRECT").global().set(false)
Then right after wait()
on the Scale element: .test.selected(row.EXPECTEDANSWER).success( getVar("CORRECT").set(true) )
and finally after the last “record trial data” log
line: .log("CORRECT", getVar("CORRECT"))
Jeremy