the clock has way too many digits I want it to just include seconds w/o decimals- how would I do this?
round(t)
the experiment is only running if the text clock is set to every frame
t is the time since the start of the routine, which is why it only works if you set to every frame. If you want a clock that spans across routines, you could create one using myClock = core.Clock()
and then use round(myClock.getTime())
You might find some more answers if you look at my PM Time online demo. I also have a PM N-Back.