No problem, you just need to change the (x, y) position of cornerText
. The position coordinates are zero (0, 0) in the middle of the screen, so try (-.4, .4), play around with the positions to see what works. For the data, it depends on how you want the data saving. IF you want a new word in each column of your data file, add the following to the “End Routine” tab:
for index, word in enumerate(cornerText.text.split('\n')):
word = word.strip(' ')
if len(word):
thisExp.addData("word{}".format(index), word)
Try the attached, and see how it works. There were some other changes, removing the title of the word list (otherwise it gets saved in the data file as a word), switching the window units of the experiment to “height”, moving text from right to left, and resetting the cornerText on every trial.textFill.psyexp (8.5 KB)