Problems with paced reading task

hello! I’m trying to make a paced reading task (so, fixed time for each word), with each word appearing for 400ms and an interword interval for 200ms. The general task seems to work with simple routines and loops but the first few words of each sentence speed up instead of being presented for the fixed 400ms. Does anyone know what could be causing this?

Thanks!

Please could you show how you are controlling the timing?

The timing for the first item in a loop can be a bit out so one option could be to start the sentence with a dummy blank word.

I’m having each window be shown from time 0.0s to 0.4s and then loop through my csv. I did what you suggested and it still skips the first few windows of each sentence :frowning:

the warning message is “Couldn’t measure a consistent frame rate!”

but I don’t know how to fix it…

You could use my RSVP online demo as an alternative method. Instead of looping through a spreadsheet you could split the sentence and present all the words in a single routine looped with Each Frame code.

thanks! So, I think I fixed it. The refreshing rate is 120hz so instead of setting the duration of each window to a specific time in ms I set it to frames (so, 400ms corresponds to 48 frames at 120). I think it works like this.