Why do my variables are not being pushed in my timeline? #3027
-
Hey y'all! I'd like some help, if possible, with a simple experiment. It is supposed to be a go/no-go experiment in the future, but i'm still at the very beginning of it. I can't push my second test (named as 'test2') in my timeline. What should I do? <title>Image_Trial</title> <script src="jsPsych/jspsych.js"></script> <script src="jsPsych/plugins/jspsych-html-keyboard-response.js"></script> <script src="jsPsych/plugins/jspsych-image-keyboard-response.js"></script> <script src="jsPsych/plugins/jspsych-instructions.js"></script> <script>
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Ricardo-Piccolo, The |
Beta Was this translation helpful? Give feedback.
Hi @Ricardo-Piccolo,
The
test1
trial is currently configured in a way that prevents it from ending.response_ends_trial: true
will make it so that no response can end the trial, and the default value fortrial_duration
is infinite. If you want the trial to end after 1 second, settrial_duration: 1000
instead ofstimulus_duration
.