OS (e.g. Win10): Ubuntu 18.04.3
PsychoPy version (e.g. 1.84.x): 3.2
Standard Standalone? (y/n) If not then what?:
What are you trying to achieve?: I am trying to collect participants answers on their auditory imagery experience using rating scales after listening to melodies. There are 2 runs of 10 trials each, and in each run only 5 trials should contain the rating scale. For the other 5 there is no time for imagine.
What did you try to make it work?: Well, my friend has helped me in this (instructions are in Portuguese). The code she came up with for the the rating scale routine is:
Initialize components for Routine “vividExp1”
vividExp1Clock = core.Clock()
vivid_exp1 = visual.TextStim(win=win, name=‘vivid_exp1’,
text=‘Quão vívida foi sua mentalização?\n\nDe uma nota de 1 a 5’,
font=‘Arial’,
pos=(0, 0), height=0.03, wrapWidth=None, ori=0,
color=‘white’, colorSpace=‘rgb’, opacity=1,
languageStyle=‘LTR’,
depth=0.0);
rating = visual.RatingScale(win=win, name=‘rating’, marker=‘triangle’, size=1.0, pos=[0.0, -0.3], low=1, high=5, labels=[’’], scale=’’, singleClick=True, disappear=True)
What specifically went wrong when you tried that?:
In the .csv file only 1 answer is stored. I should see 10 answers (related to the stimuli). This is the most important dependent variable in my experiment.
So, any ideas?