Hello,
I’m trying to allow participants to continue on to the next trial by either pressing the space bar OR by clicking a response button. So far, I’ve only managed to have people press the space bar and then the response button. Is there a way I can offer both options simultaneously and skip the one that was not selected? I’m trying to achieve that the same experiment version can be run both on desktop computers and mobile devices.
newText("<p>Press SPACE to continue <p>")
.center()
,
newKey(" ")
.wait()
,
newButton("Space")
.print()
.center()
.wait()
Thank you!