OS (e.g. Win10): win 10
PsychoPy version (e.g. 1.84.x): v2020.1.3
Standard Standalone? (y/n) If not then what?: y
What are you trying to achieve?: added a dialog box in between the experiment.
Hello All,
new to psychopy, i was designing an small experiment but stuck at one point, please have a look.
i am designing an experiment where after completion of trial, need a dialog box to submit response.
after one block (task) made another block where i added code for displaying dialog box.
i searched online i tried it is working but not completely.
as dialog box is coming but the next window is not appearing.
win.winHandle.set_fullscreen(False)
win.winHandle.set_visible(False)
win_background = visual.Window(fullscr=False, size=[2000, 2000], allowGUI=False) # optional: a temporary big window to hide the desktop/app to the participant
#win.close() # close window 1
respDict = {‘duration’:’’}
gui.DlgFromDict(respDict)
win_background.close() # clean up the temporary background
win.winHandle.set_visible(True)
win.winHandle.set_fullscreen(True)
this is running fine but experiment is ends here.
but in the xperiment there is another routine where some text is ther but not appearing.
ant suggestion would be really helpful.
Thanks in advance.