Hello everyone. I’m new to Psychopy, so prepare for a potentially basic question. I’m trying to set up an analog scale and it works only when an additional monitor is plugged in my Mac. When it is not, the interface won’t react to mouse clicks. Here’s the code for the scale:
from psychopy import visual
win = visual.Window()
probe_confidence = visual.RatingScale(win,
labels=['Not at all confident', 'Extremely confident'], # End points
scale=None, # Suppress default
low=1, high=100, tickHeight=0)
# Show scale
while scale.noResponse:
scale.draw()
win.flip()
# Show response
print(scale.getRating(), scale.getRT())