PennController for IBEX › Forums › Support › Maze: comprehension question only in some trials › Reply To: Maze: comprehension question only in some trials
November 8, 2022 at 3:14 pm
#9700
Jeremy
Keymaster
Hi Mandy,
Apparently the way I wrote the success
and failure
commands, they don’t accept arrays of commands; instead, they require a comma-separated list of commands. Just add ...
before ( row.QuestYN =="Y" ? [
to tell the script to coerce the arrays into a comma-separated list, like this: ...( row.QuestYN =="Y" ? [
Jeremy