|
Post by anke2212 on Sept 18, 2020 7:28:14 GMT
Hi everyone!
In our experiment we would like to have a fixed amount of rest between blocks, during which we want to display the participants' feedback. We would like to display the feedback for 10 seconds and then display 8 red squares for another 10 seconds. However, I wasn't able to figure out how you can leave out the fact that they have to press a key to leave the feedback. Is this possible and if so, how?
Thank you in advance for the help!
Best regards, Anke
CODE OF BLOCK:
block SRTT_real1 ## BLOCK 1
bitmap delay
delay 500
tasklist
SRTT 32 fixed ## 4 times the sequence
end
feedback
set &abc mean c5 ; select c6 == 1 set &correct count c6 ; select c6 == 1 text color 239 255 20
text -250 -200 &correct; prefix "You catched" ; postfix " butterflies in"
text 220 -200 &abc ; postfix " ms"
text -300 -100 "Do you think you can even go faster?"
end
bitmap box_rest ## the 8 red squares for 10 sec
delay 10000
bitmap delay
delay 500
|
|
|
Post by PsyToolkit on Sept 18, 2020 13:54:37 GMT
Feedback always automatically wants a keypress (or "mouse"): For example, to have another key than the default "space", you can have within your feedback block:
feedback text 0 0 "Some feedback"
wait_for_key mouse end
It would be possible to add an option to have no key press at all. Can you explain WHY you would find that useful?
|
|
|
Post by anke2212 on Sept 18, 2020 14:22:54 GMT
Thank you for your response!
We would like to display the feedback for a fixed amount of seconds. When they have to press a key to exit it, there is a possibility that they pause for several minutes, as we won't be able to control this.
|
|
|
Post by PsyToolkit on Sept 18, 2020 22:57:59 GMT
Okay, that makes sense.
|
|