|
Post by giorgia on Nov 11, 2020 10:45:57 GMT
Hi
I created a decision-making experiment with psytoolkit, the experiment works but I noticed a difference in the timing of the response feedback that follows participant's response.
In particular, when the feedback follows the response made with the response button 1 ("CORRECT", associated to winning), the written feedback immediately disappears from the screen. On the contrary, when the feedback follows the response made with response button 2 ("WRONG", associated to losing), the written feedback stays more on the screen. Based on the script, both feedbacks should stay on the screen for 300 ms, but there is a constant difference between "CORRECT" and "WRONG" (with the former always lasting less than the latter).
The code relative to the response feedback is the following:
if STATUS == CORRECT
font arial
show text @9
delay 300
clear 17
fi
if STATUS == WRONG
font arial
show text @10
delay 300
clear 18
fi
if STATUS == TIMEOUT
font arial
show text "Respond faster!"
delay 300
clear 19
fi
How can I fix this problem?
Any suggestion would be greatly appreciated!
Thank you.
Giorgia
|
|