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?
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
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.