URL of experiment: https://pavlovia.org/run/andreonj/first_dummy
Description of the problem:
Hello,
I am trying to create an online eye tracking experiment which contains presentation of successive images. The images are imported from a list created in excel and I have created a loop named trialList
.
In the output csv file however, the attributes of the trialHandler such as .thisTrialN
,.thisN
and the name of the images presented in each trials do not match with the actual presentation.
In the tracking_pres
routine, I have inserted the following code components:
Begin Experiment
trialList = 0;
Begin Routine
if((trialList !=5)){
continueRoutine = false;
}
End Routine
trialList +=1;
I have created a simpler version of the experiment which contains everything apart from the eye tracking component and it works just fine.
Apart from seeking for a solution, I would also like to learn how to debug. It would be fantastic if anyone can also give me advices on how I should debug in this situation, thank you very much!