mh105
May 14, 2024, 3:52am
2
I ran into the same issue with PsychoPy version 2024.1.4 on macOS 14.4.1. I’m pretty sure that this is a bug in the code and I have just submitted a PR to fix it.
For a quick and easy solution however, see Sol’s reply to an earlier topic:
Instead you will need to add custom code to the project where you want to start or stop recording by adding custom code components. To start recording add a new routine and then add the following to the begin routine tab of a custom code component in the routine:
eyetracker.setRecordingState(True)
To stop recording add a new routine and then add the following to the end routine tab of a custom code component:
eyetracker.setRecordingState(False)
Starting and stopping of recording should be done when no keyboard events are expected so if one occurs during that 0.5 second time period it is not dropped.
A proper fix for this will be available in the a future release. Sorry for any inconvience.