Creating pop-up thought probes

I’m new to learning python and psychopy and am still learning - is it possible to create a series of intermittent pop-up thought probes that include a short 3-item questionnaire during a trial, then go away once the participant has answered them? I’m trying to program them to pop up every 2 minutes during a 12 minute trial (total of 6 probes).

You can insert a routine that only executes on some trials, e.g:

In that example, the condition is based on the trial number, but you could easily change the condition to be based on time elapsed in the experiment I guess.

1 Like

Thank you! I will give this a try.