Hi. I uploaded an experiment a few days ago and errors are popping up one after the other.
It started off by saying “frameDur is not defined”, so I added the line “var frameDur;” and it worked… then I encountered reference errors for “general_instructionClock”, “text”, … and on and on.
What I noticed is that all of the variables that caused the errors had to be imported from the pavlovia library, and I think that the fundamental problem is relevant to this. The initial lines of my js code look like the following:
import * as util from ‘https://pavlovia.org/lib/util-3.2.js’;
import * as visual from ‘https://pavlovia.org/lib/visual-3.2.js’;
And the lines that caused the errors were
general_instructionClock = new util.Clock();
text = new visual.TextStim();
so I thought util.Clock() and visual.TextStim() were not well imported from the library.
These lines were automatically generated when I synced the PsychoPy file onto Pavlovia. Is anybody else using these lines having the same problem?