Running experiment on external monitor

I figured this out; change the screen parameter in the visual.Window() command (in my case, from 0 to 1):

win = visual.Window(
size=[1280, 720], fullscr=True, screen=1,
winType=‘pyglet’, allowGUI=False, allowStencil=False,
color=[0,0,0], colorSpace=‘rgb’,
blendMode=‘avg’, useFBO=True,
units=‘height’)

2 Likes