Hi! I’m trying to set the position of an image (e.g., TD_Correct in Routine 2) to be the same as an image that appeared in the previous routine (e.g., TO_Correct in Routine 1).
Right now, TO_Correct and TO_Incorrect (in Routine 1; see below) are coded to appear either on the left or right of the screen and I want to make sure that in the next routine, the positions of TD_Correct and TD_Incorrect correspond to TO_Correct and TO_Incorrect respectively.
Is there some code that I can use to achieve this? Thank you 
Routine 1:
Code for TO_Correct and TO_Incorrect position:
imPositions = [(-0.35, 0), (0.35, 0)]
shuffle(imPositions) # to randomize first position
TO_Correct.setPos(imPositions[0])
TO_Incorrect.setPos(imPositions[1])
Routine 2:

