URL of experiment:
Description of the problem:
Hi! I am having issues with getting my videos to loop in Pavlovia. I ticked the option to loop playback in the component view but this doesn’t do anything. I also tried with reset() method:
if movie.status == FINISHED:
movie.reset()
This only makes it play for a second time because then Pavlovia doesn’t switch movie.status to FINISHED but rather it leaves it as STARTED. So, my problem here is how to ‘catch’ when the video is finished so that I can successfully implement .reset() method. There must be a way because after it playes for two times, if I exit the fullscreen, it plays for another time. This could mean that I have to access the .draw method, but I am not sure how to do this.
Thanks everybody!