No problem. Currently, i solved problem with images. Now i’m trying to make that after 3 sec after no response from participant show text “No reaction” Here code:
if response.rt >= 1 and response.rt <= 1.4:
msg = "Dobrze!"
Stim.draw(win)
win.flip()
core.wait(1.0)
elif response.rt > 0 and response.rt < 1:
msg = "Za szybko!"
Stim2.draw(win)
win.flip()
core.wait(1.0)
elif response.rt > 1.4 and response.rt < 3:
msg = "Za późno!"
Stim3.draw(win)
win.flip()
core.wait(1.0)
elif response.keys == [] and response.tStart > 3:
msg = "brak reakcji"
Stim4.draw(win)
win.flip()
core.wait(1.0)