PsychoPy version: 2023.2.3
Disclaimer: I have to use the Rating Scale Component instead of the Slider Component because the functionality is different between the two.*
I have a weird bug occurring with the rating component in psychopy builder. In the custom tab I have:
tickHeight = 0,
low = 1,
high = 100,
scale = None,
markerColor = 'white',
marker = 'circle',
pos= (0, -0.005),
size = 0.85,
stretch = 4.4,
showValue = False,
showAccept = False,
textColor = grey,
lineColor = grey,
markerStart = 50
However, I am unable to run the experiment as the the builder makes an error when compiling the markercolor, marker, and position:
visual.RatingScale(win=win,... markerColor=white, marker=circle, pos=(0, None)...
The fix I have been doing is compiling the experiment to python, then manually changing it to:
visual.RatingScale(win=win,... markerColor='white', marker='circle', pos=(0, -0.005)...
But it’s kind of annoying to have to do it for each participant, and still opens it up to user error.
Issac